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

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

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

Table.getName介绍

[英]The name of this table.
[中]此表的名称。

代码示例

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

  1. public JDBCTableDefinition(SchemaDefinition schema, Table<?> table) {
  2. super(schema, table.getName(), "");
  3. this.table = table;
  4. }

代码示例来源:origin: palantir/atlasdb

  1. int endIndex = partialSql.lastIndexOf(')');
  2. String fullSql = partialSql.substring(0, endIndex) + "," +
  3. " CONSTRAINT pk_" + kvs.METADATA_TABLE.getName() +
  4. " PRIMARY KEY (" + TABLE_NAME.getName() + ")" +
  5. partialSql.substring(endIndex);

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

  1. @Override
  2. public final Table<?> getTable(String name) {
  3. for (Table<?> table : getTables()) {
  4. if (table.getName().equals(name)) {
  5. return table;
  6. }
  7. }
  8. return null;
  9. }

代码示例来源:origin: shilad/wikibrain

  1. public static boolean tableExists(DSLContext context, Table table) {
  2. for (Table t : context.meta().getTables()) {
  3. if (t.getName().equalsIgnoreCase(table.getName())) {
  4. return true;
  5. }
  6. }
  7. return false;
  8. }
  9. }

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

  1. /**
  2. * Add tables to this mapping
  3. *
  4. * @param inputTable The table known at codegen time to be mapped
  5. * @param outputTable The table configured at run time to be mapped
  6. */
  7. public void add(Table<?> inputTable, Table<?> outputTable) {
  8. add(inputTable, outputTable.getName());
  9. }

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

  1. private final String tableName(Field<?> field) {
  2. if (field instanceof TableField) {
  3. Table<?> table = ((TableField<?, ?>) field).getTable();
  4. if (table != null) {
  5. return table.getName();
  6. }
  7. }
  8. return null;
  9. }

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

  1. @Override
  2. public final Table<?> getTable(String tableName) {
  3. for (Table<?> table : getTables())
  4. if (table.getName().equals(tableName))
  5. return table;
  6. return null;
  7. }

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

  1. /**
  2. * Add tables to this mapping
  3. *
  4. * @param inputTable The table known at codegen time to be mapped
  5. * @param outputTable The table configured at run time to be mapped
  6. */
  7. public void add(Table<?> inputTable, Table<?> outputTable) {
  8. add(inputTable, outputTable.getName());
  9. }

代码示例来源:origin: shilad/wikibrain

  1. /**
  2. * Optimizes the performance of the database for some table.
  3. * On postgres this translates to vacuum analyze.
  4. * On h2 it does nothing.
  5. */
  6. public void optimize(Table table) throws DaoException {
  7. optimize(table.getName());
  8. }

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

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

代码示例来源:origin: mevdschee/java-crud-api

  1. public void update() {
  2. tables = new LinkedHashMap<>();
  3. cachedTables = new LinkedHashMap<>();
  4. for (Table<?> table : dsl.meta().getTables()) {
  5. if (!(table.toString().startsWith(tablePrefix))) {
  6. // table not in current catalog or schema
  7. continue;
  8. }
  9. tables.put(table.getName(), table);
  10. }
  11. }

代码示例来源: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. CountTable(Table<?> table, boolean distinct) {
  2. super("count", distinct, SQLDataType.INTEGER, DSL.field("{0}", DSL.name(table.getName())));
  3. this.table = table;
  4. this.distinct = distinct;
  5. }

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

  1. /**
  2. * Render a list of names of the <code>NamedQueryParts</code> contained in
  3. * this list.
  4. */
  5. static final void tableNames(RenderContext context, Collection<? extends Table<?>> list) {
  6. String separator = "";
  7. for (Table<?> table : list) {
  8. context.sql(separator).literal(table.getName());
  9. separator = ", ";
  10. }
  11. }

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

  1. private final Name generatedName() {
  2. Name t = table.getQualifiedName();
  3. StringBuilder sb = new StringBuilder(table.getName());
  4. for (SortField<?> f : sortFields)
  5. sb.append('_').append(f.getName());
  6. sb.append("_idx");
  7. if (t.qualified())
  8. return t.qualifier().append(sb.toString());
  9. else
  10. return name(sb.toString());
  11. }

代码示例来源:origin: mevdschee/java-crud-api

  1. private String findForeignKeyReference(ForeignKey<?, ?> fk) {
  2. UniqueKey<?> pk = fk.getKey();
  3. if (pk != null) {
  4. Field<?>[] pks = pk.getFieldsArray();
  5. if (pks.length == 1) {
  6. return pk.getTable().getName();
  7. }
  8. }
  9. return null;
  10. }

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

  1. @Override
  2. public String getTableName(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. return table.getName();
  9. }
  10. }
  11. // By default, no table is available
  12. return "";
  13. }

代码示例来源: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: perfectsense/dari

  1. private SqlSubJoin(SqlQuery parent, SqlQuery sub, SqlJoin join) {
  2. this.sqlQuery = sub;
  3. AbstractSqlDatabase database = sub.database;
  4. String alias = sub.recordTableAlias;
  5. Field<?> id = DSL.field(DSL.name(alias, database.recordIdField.getName()), database.uuidType());
  6. this.table = sub.initialize(DSL.table(DSL.name(database.recordTable.getName())).as(alias));
  7. this.on = join.valueField.eq(id);
  8. if (sub.needsDistinct) {
  9. parent.needsDistinct = true;
  10. }
  11. }
  12. }

代码示例来源:origin: perfectsense/dari

  1. /**
  2. * Returns an SQL statement that can be used to get when the rows
  3. * matching the query were last updated.
  4. */
  5. public String lastUpdateStatement() {
  6. Table<?> table = initialize(DSL.table(DSL.name(database.recordUpdateTable.getName())).as(recordTableAlias));
  7. return tableRenderContext.render(dslContext
  8. .select(DSL.field(DSL.name(recordTableAlias, database.recordUpdateDateField.getName())).max())
  9. .from(table)
  10. .where(whereCondition));
  11. }

相关文章