org.teiid.metadata.Table.setProperty()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(11.7k)|赞(0)|评价(0)|浏览(284)

本文整理了Java中org.teiid.metadata.Table.setProperty()方法的一些代码示例,展示了Table.setProperty()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Table.setProperty()方法的具体详情如下:
包路径:org.teiid.metadata.Table
类名称:Table
方法名:setProperty

Table.setProperty介绍

暂无

代码示例

代码示例来源:origin: org.teiid.connectors/translator-odata4

  1. private Table addTable(MetadataFactory mf, String tableName,
  2. String entityType, ODataType odataType, XMLMetadata metadata)
  3. throws TranslatorException {
  4. Table table = buildTable(mf, tableName);
  5. table.setProperty(ODATA_TYPE, odataType.name());
  6. table.setProperty(NAME_IN_SCHEMA, entityType);
  7. CsdlEntityType type = getEntityType(metadata, entityType);
  8. addEntityTypeProperties(mf, metadata, table, type);
  9. return table;
  10. }

代码示例来源:origin: org.teiid.connectors/translator-salesforce

  1. private void addTable(DescribeGlobalSObjectResult objectMetadata) {
  2. String name = objectMetadata.getName();
  3. if (normalizeNames) {
  4. name = NameUtil.normalizeName(name);
  5. }
  6. if (!allowedToAdd(name)) {
  7. return;
  8. }
  9. Table table = metadataFactory.addTable(name);
  10. FullyQualifiedName fqn = new FullyQualifiedName("sobject", objectMetadata.getName()); //$NON-NLS-1$
  11. table.setProperty(FQN, fqn.toString());
  12. table.setNameInSource(objectMetadata.getName());
  13. tableMap.put(objectMetadata.getName(), table);
  14. table.setProperty(TABLE_CUSTOM, String.valueOf(objectMetadata.isCustom()));
  15. table.setProperty(TABLE_SUPPORTS_CREATE, String.valueOf(objectMetadata.isCreateable()));
  16. table.setProperty(TABLE_SUPPORTS_DELETE, String.valueOf(objectMetadata.isDeletable()));
  17. table.setProperty(TABLE_SUPPORTS_MERGE, String.valueOf(objectMetadata.isMergeable()));
  18. table.setProperty(TABLE_SUPPORTS_QUERY, String.valueOf(objectMetadata.isQueryable()));
  19. table.setProperty(TABLE_SUPPORTS_REPLICATE, String.valueOf(objectMetadata.isReplicateable()));
  20. table.setProperty(TABLE_SUPPORTS_RETRIEVE, String.valueOf(objectMetadata.isRetrieveable()));
  21. table.setProperty(TABLE_SUPPORTS_SEARCH, String.valueOf(objectMetadata.isSearchable()));
  22. }

代码示例来源:origin: org.teiid.connectors/translator-jdbc

  1. table.setProperty(TYPE, ti.type);
  2. tableMap.put(fullName, ti);
  3. tableMap.put(tableName, ti);

代码示例来源:origin: teiid/teiid

  1. private static void removeTableOption(String key, Table table) {
  2. if (table.getProperty(key, false) != null) {
  3. table.setProperty(key, null);
  4. }
  5. removeCommonProperty(key, table);
  6. if (key.equals(DDLConstants.MATERIALIZED)) {
  7. table.setMaterialized(false);
  8. }
  9. if (key.equals(DDLConstants.MATERIALIZED_TABLE)) {
  10. table.setMaterializedTable(null);
  11. }
  12. if (key.equals(DDLConstants.UPDATABLE)) {
  13. table.setSupportsUpdate(false);
  14. }
  15. if (key.equals(DDLConstants.CARDINALITY)) {
  16. table.setCardinality(-1);
  17. }
  18. }

代码示例来源:origin: org.jboss.teiid/teiid-engine

  1. private static void removeTableOption(String key, Table table) {
  2. if (table.getProperty(key, false) != null) {
  3. table.setProperty(key, null);
  4. }
  5. removeCommonProperty(key, table);
  6. if (key.equals(DDLConstants.MATERIALIZED)) {
  7. table.setMaterialized(false);
  8. }
  9. if (key.equals(DDLConstants.MATERIALIZED_TABLE)) {
  10. table.setMaterializedTable(null);
  11. }
  12. if (key.equals(DDLConstants.UPDATABLE)) {
  13. table.setSupportsUpdate(false);
  14. }
  15. if (key.equals(DDLConstants.CARDINALITY)) {
  16. table.setCardinality(-1);
  17. }
  18. }

代码示例来源:origin: org.teiid/teiid-engine

  1. private static void removeTableOption(String key, Table table) {
  2. if (table.getProperty(key, false) != null) {
  3. table.setProperty(key, null);
  4. }
  5. removeCommonProperty(key, table);
  6. if (key.equals(DDLConstants.MATERIALIZED)) {
  7. table.setMaterialized(false);
  8. }
  9. if (key.equals(DDLConstants.MATERIALIZED_TABLE)) {
  10. table.setMaterializedTable(null);
  11. }
  12. if (key.equals(DDLConstants.UPDATABLE)) {
  13. table.setSupportsUpdate(false);
  14. }
  15. if (key.equals(DDLConstants.CARDINALITY)) {
  16. table.setCardinality(-1);
  17. }
  18. }

代码示例来源:origin: org.jboss.teiid/teiid-engine

  1. try {
  2. parser.parseCommand(wrapped);
  3. table.setProperty(property, wrapped);
  4. return wrapped;
  5. } catch (QueryParserException e) {
  6. try {
  7. parser.parseCommand(wrapped);
  8. table.setProperty(property, wrapped);
  9. return wrapped;
  10. } catch (QueryParserException e) {

代码示例来源:origin: teiid/teiid

  1. try {
  2. parser.parseCommand(wrapped);
  3. table.setProperty(property, wrapped);
  4. return wrapped;
  5. } catch (QueryParserException e) {
  6. try {
  7. parser.parseCommand(wrapped);
  8. table.setProperty(property, wrapped);
  9. return wrapped;
  10. } catch (QueryParserException e) {

代码示例来源:origin: org.teiid/teiid-engine

  1. try {
  2. parser.parseCommand(wrapped);
  3. table.setProperty(property, wrapped);
  4. return wrapped;
  5. } catch (QueryParserException e) {
  6. try {
  7. parser.parseCommand(wrapped);
  8. table.setProperty(property, wrapped);
  9. return wrapped;
  10. } catch (QueryParserException e) {

代码示例来源:origin: teiid/teiid

  1. @BeforeClass public static void oneTimeSetup() throws Exception {
  2. tm = RealMetadataFactory.example1();
  3. Table t = tm.getGroupID("pm1.g1");
  4. t.setProperty(RulePlaceAccess.CONFORMED_SOURCES, "pm2");
  5. t = tm.getGroupID("pm2.g3");
  6. t.setProperty(RulePlaceAccess.CONFORMED_SOURCES, "pm1");
  7. t = tm.getGroupID("pm2.g1");
  8. t.setProperty(RulePlaceAccess.CONFORMED_SOURCES, "pm3");
  9. }

代码示例来源:origin: org.teiid.connectors/translator-jpa

  1. private Table addEntity(MetadataFactory mf, Metamodel model, EntityType<?> entity) throws TranslatorException {
  2. Table table = mf.getSchema().getTable(entity.getName());
  3. if (table == null) {
  4. table = mf.addTable(entity.getName());
  5. table.setSupportsUpdate(true);
  6. table.setProperty(ENTITYCLASS, entity.getJavaType().getCanonicalName());
  7. addPrimaryKey(mf, model, entity, table);
  8. addSingularAttributes(mf, model, entity, table, Collections.EMPTY_LIST);
  9. }
  10. return table;
  11. }

代码示例来源:origin: org.teiid.connectors/translator-jdbc

  1. public void getConnectorMetadata(Connection conn, MetadataFactory metadataFactory)
  2. throws SQLException {
  3. super.getConnectorMetadata(conn, metadataFactory);
  4. for (String name:metadataFactory.getSchema().getTables().keySet()) {
  5. if (name.startsWith("ft_")) {
  6. Table table = metadataFactory.getSchema().getTable(name);
  7. table.setProperty(TVF, "true");
  8. }
  9. }
  10. for (String name:metadataFactory.getSchema().getProcedures().keySet()) {
  11. Procedure proc = metadataFactory.getSchema().getProcedure(name);
  12. proc.setProperty(TVF, "true");
  13. }
  14. }
  15. }

代码示例来源:origin: org.teiid.connectors/translator-mongodb

  1. FullyQualifiedName rn = new FullyQualifiedName("embedded", tableName); //$NON-NLS-1$
  2. String parentfqn = parent.getProperty(FQN, false);
  3. table.setProperty(FQN, parentfqn + FullyQualifiedName.SEPARATOR + rn.toString());
  4. } else {
  5. FullyQualifiedName fqn = new FullyQualifiedName("collection", tableName); //$NON-NLS-1$
  6. table.setProperty(FQN, fqn.toString());

代码示例来源:origin: org.teiid/teiid-runtime

  1. private Table add_matpg_datatype() {
  2. Table t = createView("matpg_datatype"); //$NON-NLS-1$
  3. addColumn("oid", DataTypeManager.DefaultDataTypes.INTEGER, t); //$NON-NLS-1$
  4. addColumn("typname", DataTypeManager.DefaultDataTypes.STRING, t); //$NON-NLS-1$
  5. addColumn("name", DataTypeManager.DefaultDataTypes.STRING, t); //$NON-NLS-1$
  6. addColumn("typlen", DataTypeManager.DefaultDataTypes.SHORT, t); //$NON-NLS-1$
  7. addColumn("typtype", DataTypeManager.DefaultDataTypes.CHAR, t); //$NON-NLS-1$
  8. addColumn("typbasetype", DataTypeManager.DefaultDataTypes.INTEGER, t); //$NON-NLS-1$
  9. addColumn("typtypmod", DataTypeManager.DefaultDataTypes.INTEGER, t); //$NON-NLS-1$
  10. addPrimaryKey("matpg_datatype_names", Arrays.asList("oid", "name"), t); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
  11. addIndex("matpg_datatype_ids", true, Arrays.asList("typname", "oid"), t); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
  12. String transformation = "select pt.oid as oid, pt.typname as typname, pt.teiid_name as name, pt.typlen, pt.typtype, pt.typbasetype, pt.typtypmod from pg_catalog.pg_type pt" //$NON-NLS-1$
  13. + " UNION ALL select pt.oid as oid, pt.typname as typname, 'char' as name, pt.typlen, pt.typtype, pt.typbasetype, pt.typtypmod from pg_catalog.pg_type pt where typname='bpchar'" //$NON-NLS-1$
  14. + " UNION ALL select pt.oid as oid, pt.typname as typname, 'byte' as name, pt.typlen, pt.typtype, pt.typbasetype, pt.typtypmod from pg_catalog.pg_type pt where typname='int2'" //$NON-NLS-1$
  15. + " UNION ALL select pt.oid as oid, pt.typname as typname, 'biginteger' as name, pt.typlen, pt.typtype, pt.typbasetype, pt.typtypmod from pg_catalog.pg_type pt where typname='numeric'" //$NON-NLS-1$
  16. + " UNION ALL select pt.oid as oid, pt.typname as typname, 'varbinary' as name, pt.typlen, pt.typtype, pt.typbasetype, pt.typtypmod from pg_catalog.pg_type pt where typname='bytea'" //$NON-NLS-1$
  17. + " UNION ALL select pt.oid as oid, pt.typname as typname, 'byte[]' as name, pt.typlen, pt.typtype, pt.typbasetype, pt.typtypmod from pg_catalog.pg_type pt where typname='_int2'" //$NON-NLS-1$
  18. + " UNION ALL select pt.oid as oid, pt.typname as typname, 'biginteger[]' as name, pt.typlen, pt.typtype, pt.typbasetype, pt.typtypmod from pg_catalog.pg_type pt where typname='_numeric'" //$NON-NLS-1$
  19. + " UNION ALL select pt.oid as oid, pt.typname as typname, 'varbinary[]' as name, pt.typlen, pt.typtype, pt.typbasetype, pt.typtypmod from pg_catalog.pg_type pt where typname='_bytea'" //$NON-NLS-1$
  20. + " UNION ALL select pt.oid as oid, pt.typname as typname, 'char[]' as name, pt.typlen, pt.typtype, pt.typbasetype, pt.typtypmod from pg_catalog.pg_type pt where typname='_bpchar'"; //$NON-NLS-1$
  21. t.setSelectTransformation(transformation);
  22. t.setMaterialized(true);
  23. t.setProperty(MaterializationMetadataRepository.ALLOW_MATVIEW_MANAGEMENT, "true"); //$NON-NLS-1$
  24. return t;
  25. }

代码示例来源:origin: org.teiid.connectors/translator-jdbc

  1. /**
  2. *
  3. * @param metadataFactory
  4. * @param tableCatalog
  5. * @param tableSchema
  6. * @param tableName
  7. * @param remarks
  8. * @param fullName
  9. * @return
  10. */
  11. protected Table addTable(MetadataFactory metadataFactory,
  12. String tableCatalog, String tableSchema, String tableName,
  13. String remarks, String fullName) {
  14. Table table = metadataFactory.addTable(useFullSchemaName?fullName:tableName);
  15. table.setNameInSource(getFullyQualifiedName(tableCatalog, tableSchema, tableName, true));
  16. //create a fqn for the table
  17. FullyQualifiedName fqn = new FullyQualifiedName();
  18. if (tableCatalog != null && !tableCatalog.isEmpty()) {
  19. fqn.append(getCatalogTerm(), tableCatalog);
  20. }
  21. if (tableSchema != null && !tableSchema.isEmpty()) {
  22. fqn.append(getSchemaTerm(), tableSchema);
  23. }
  24. fqn.append(getTableTerm(), tableName);
  25. table.setProperty(FQN, fqn.toString());
  26. table.setSupportsUpdate(true);
  27. table.setAnnotation(remarks);
  28. return table;
  29. }

代码示例来源:origin: org.teiid.connectors/translator-google

  1. /**
  2. * Adds new table to metadata.
  3. *
  4. * @param spreadsheet Name of the spreadsheet
  5. * @param worksheet Name of the worksheet
  6. * @throws TranslatorException
  7. */
  8. private void addTable(MetadataFactory mf, Worksheet worksheet) {
  9. if (worksheet.getColumnCount() == 0){
  10. return;
  11. }
  12. Table table = mf.addTable(worksheet.getName());
  13. table.setProperty(FQN, new FullyQualifiedName("worksheet", worksheet.getName()).toString()); //$NON-NLS-1$
  14. table.setNameInSource(worksheet.getName());
  15. if (worksheet.isHeaderEnabled()) {
  16. table.setSupportsUpdate(true);
  17. }
  18. addColumnsToTable(mf, table, worksheet);
  19. }

代码示例来源:origin: org.teiid.connectors/translator-mongodb

  1. private void addForeignKey(MetadataFactory metadataFactory, Table childTable, Table table) {
  2. MergeDetails.Association association = MergeDetails.Association.valueOf(childTable.getProperty(ASSOSIATION, false));
  3. childTable.setProperty(ASSOSIATION, null);
  4. if (association == MergeDetails.Association.ONE) {
  5. KeyRecord record = table.getPrimaryKey();

代码示例来源:origin: teiid/teiid

  1. t.setProperty(DataModifiable.DATA_TTL, "2");
  2. ai.addAccessedObject(t);

代码示例来源:origin: org.teiid.connectors/translator-odata4

  1. FullyQualifiedName fqn = new FullyQualifiedName("entity container", container.getName()==null?"default":container.getName()); //$NON-NLS-1$ //$NON-NLS-2$
  2. fqn.append("entity set", entitySet.getName()); //$NON-NLS-1$
  3. t.setProperty(FQN, fqn.toString());
  4. FullyQualifiedName fqn = new FullyQualifiedName("entity container", container.getName()==null?"default":container.getName()); //$NON-NLS-1$ //$NON-NLS-2$
  5. fqn.append("singleton", singleton.getName()); //$NON-NLS-1$
  6. t.setProperty(FQN, fqn.toString());

代码示例来源:origin: org.teiid.connectors/translator-odata

  1. protected Table addEntitySetAsTable(MetadataFactory mf, EdmEntitySet entitySet) throws TranslatorException {
  2. Table table = buildTable(mf, entitySet);
  3. table.setProperty(ENTITY_TYPE, entitySet.getType().getFullyQualifiedTypeName());

相关文章