org.jooq.Table.getSchema()方法的使用及代码示例

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

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

Table.getSchema介绍

[英]Get the table schema.
[中]获取表模式。

代码示例

代码示例来源:origin: org.jooq/jooq

  1. @Override
  2. public final List<Schema> getSchemas() {
  3. Set<Schema> result = new LinkedHashSet<Schema>();
  4. for (Table<?> table : tables)
  5. if (table.getSchema() != null)
  6. result.add(table.getSchema());
  7. return new ArrayList<Schema>(result);
  8. }

代码示例来源:origin: org.jooq/jooq

  1. @Override
  2. public final List<Catalog> getCatalogs() {
  3. Set<Catalog> result = new LinkedHashSet<Catalog>();
  4. for (Table<?> table : tables)
  5. if (table.getSchema() != null)
  6. if (table.getSchema().getCatalog() != null)
  7. result.add(table.getSchema().getCatalog());
  8. return new ArrayList<Catalog>(result);
  9. }

代码示例来源:origin: org.jooq/jooq

  1. private static String getQualifiedName(Table<?> table) {
  2. StringBuilder sb = new StringBuilder();
  3. if (table.getSchema() != null) {
  4. sb.append(table.getSchema().getName());
  5. sb.append(".");
  6. }
  7. sb.append(table.getName());
  8. return sb.toString();
  9. }
  10. }

代码示例来源:origin: org.jooq/jooq

  1. Lateral(Table<R> table) {
  2. super(table.getName(), table.getSchema());
  3. this.table = table;
  4. }

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics

  1. Lateral(Table<R> table) {
  2. super(table.getName(), table.getSchema());
  3. this.table = table;
  4. }

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics

  1. TableAlias(Table<R> table, String alias, String[] fieldAliases, boolean wrapInParentheses) {
  2. super(alias, table.getSchema());
  3. this.alias = new Alias<Table<R>>(table, alias, fieldAliases, wrapInParentheses);
  4. this.aliasedFields = init(fieldAliases);
  5. }

代码示例来源:origin: org.jooq/jooq

  1. TableAlias(Table<R> table, Name alias, Name[] fieldAliases, boolean wrapInParentheses) {
  2. super(alias, table.getSchema());
  3. this.alias = new Alias<Table<R>>(table, this, alias, fieldAliases, wrapInParentheses);
  4. this.aliasedFields = init(fieldAliases);
  5. }

代码示例来源:origin: com.torodb.torod.backends/common

  1. public boolean isSemanticallyEquals(Table<Record> table) {
  2. if (!table.getName().equals(getName())) {
  3. return false;
  4. }
  5. if (table.getSchema() == null || !getSchema().getName().equals(table.getSchema().getName())) {
  6. return false;
  7. }
  8. if (table.fields().length != 7) {
  9. return false;
  10. }
  11. return true; //TODO: improve the check
  12. }

代码示例来源:origin: org.jooq/jooq

  1. static final InformationSchema exportTables(Configuration configuration, List<Table<?>> tables) {
  2. InformationSchema result = new InformationSchema();
  3. Set<Catalog> includedCatalogs = new LinkedHashSet<Catalog>();
  4. Set<Schema> includedSchemas = new LinkedHashSet<Schema>();
  5. Set<Table<?>> includedTables = new LinkedHashSet<Table<?>>(tables);
  6. for (Table<?> t : tables)
  7. includedSchemas.add(t.getSchema());
  8. for (Schema s : includedSchemas)
  9. includedCatalogs.add(s.getCatalog());
  10. for (Catalog c : includedCatalogs)
  11. exportCatalog0(result, c);
  12. for (Schema s : includedSchemas)
  13. exportSchema0(result, s);
  14. for (Table<?> t : tables)
  15. exportTable0(configuration, result, t, includedTables);
  16. return result;
  17. }

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics

  1. RenamedTable(Table<R> delegate, String rename) {
  2. super(rename, delegate.getSchema());
  3. for (Field<?> field : delegate.fields()) {
  4. createField(field.getName(), field.getDataType(), this);
  5. }
  6. }
  7. }

代码示例来源:origin: org.jooq/jooq

  1. Schema schema = table.getSchema();

代码示例来源:origin: org.jooq/jooq

  1. @Override
  2. public Result<Record> run(DatabaseMetaData meta) throws SQLException {
  3. ResultSet rs = meta.getExportedKeys(null, pkTable.getSchema().getName(), pkTable.getName());
  4. return ctx.fetch(
  5. rs,
  6. String.class, // PKTABLE_CAT
  7. String.class, // PKTABLE_SCHEM
  8. String.class, // PKTABLE_NAME
  9. String.class, // PKCOLUMN_NAME
  10. String.class, // FKTABLE_CAT
  11. String.class, // FKTABLE_SCHEM
  12. String.class, // FKTABLE_NAME
  13. String.class, // FKCOLUMN_NAME
  14. Short.class, // KEY_SEQ
  15. Short.class, // UPDATE_RULE
  16. Short.class, // DELETE_RULE
  17. String.class, // FK_NAME
  18. String.class // PK_NAME
  19. );
  20. }
  21. });

代码示例来源:origin: org.jooq/jooq

  1. if (inputTable.getSchema().getName().equals(s.getInput())) {
  2. schema = new MappedSchema().withInput(inputTable.getSchema().getName());
  3. mapping().getSchemata().add(schema);

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics

  1. if (inputTable.getSchema().getName().equals(s.getInput())) {
  2. schema = new MappedSchema().withInput(inputTable.getSchema().getName());
  3. mapping().getSchemata().add(schema);

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics

  1. Schema schema = table.getSchema();

代码示例来源:origin: org.jooq/jooq

  1. @Override
  2. public String getSchemaName(int column) throws SQLException {
  3. rs.checkNotClosed();
  4. Field<?> field = rs.result.field(column - 1);
  5. if (field instanceof TableField) {
  6. Table<?> table = ((TableField<?, ?>) field).getTable();
  7. if (table != null) {
  8. Schema schema = table.getSchema();
  9. if (schema != null) {
  10. Configuration configuration = rs.result.configuration();
  11. Schema mapped = null;
  12. if (configuration != null)
  13. mapped = DSL.using(configuration).map(schema);
  14. if (mapped != null)
  15. return mapped.getName();
  16. else
  17. return schema.getName();
  18. }
  19. }
  20. }
  21. // By default, no schema is available
  22. return "";
  23. }

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics

  1. @Override
  2. public String getSchemaName(int column) throws SQLException {
  3. rs.checkNotClosed();
  4. Field<?> field = rs.result.field(column - 1);
  5. if (field instanceof TableField) {
  6. Table<?> table = ((TableField<?, ?>) field).getTable();
  7. if (table != null) {
  8. Schema schema = table.getSchema();
  9. if (schema != null) {
  10. Configuration configuration = ((AttachableInternal) rs.result).configuration();
  11. Schema mapped = null;
  12. if (configuration != null) {
  13. mapped = DSL.using(configuration).map(schema);
  14. }
  15. if (mapped != null) {
  16. return mapped.getName();
  17. }
  18. else {
  19. return schema.getName();
  20. }
  21. }
  22. }
  23. }
  24. // By default, no schema is available
  25. return "";
  26. }

代码示例来源:origin: org.jooq/jooq

  1. it.setTableCatalog(t.getCatalog().getName());
  2. if (!StringUtils.isBlank(t.getSchema().getName()))
  3. it.setTableSchema(t.getSchema().getName());
  4. ic.setTableCatalog(t.getCatalog().getName());
  5. if (!StringUtils.isBlank(t.getSchema().getName()))
  6. ic.setTableSchema(t.getSchema().getName());

代码示例来源:origin: org.jooq/jooq

  1. String schemaName = t.getSchema().getName();
  2. UniqueKey<?> uk = ((ForeignKey<?, ?>) key).getKey();
  3. String ukCatalogName = uk.getTable().getCatalog().getName();
  4. String ukSchemaName = uk.getTable().getSchema().getName();

代码示例来源:origin: org.jooq/jooq

  1. String schemaName = t.getSchema().getName();

相关文章