Uses of Interface
org.eclipse.net4j.db.ddl.IDBTable

Packages that use IDBTable
org.eclipse.net4j.db The Net4j DB framework. 
org.eclipse.net4j.db.ddl The Net4j DB framework concepts for the abstraction of the SQL data definition language. 
org.eclipse.net4j.db.postgresql The Net4j DB Framework support for PostgreSQL databases. 
org.eclipse.net4j.spi.db Server service provider interfaces and useful base implementations for the Net4j DB framework. 
 

Uses of IDBTable in org.eclipse.net4j.db
 

Methods in org.eclipse.net4j.db that return types with arguments of type IDBTable
 Set<IDBTable> IDBAdapter.createTables(Iterable<? extends IDBTable> tables, Connection connection)
           
 Collection<IDBTable> IDBAdapter.dropTables(Iterable<? extends IDBTable> tables, Connection connection)
           
 

Methods in org.eclipse.net4j.db with parameters of type IDBTable
static int DBUtil.clearTable(Connection connection, IDBTable table)
           
 boolean IDBAdapter.createTable(IDBTable table, Statement statement)
           
static void DBUtil.deserializeTable(ExtendedDataInput in, Connection connection, IDBTable table, OMMonitor monitor)
           
static void DBUtil.deserializeTable(ExtendedDataInput in, Connection connection, IDBTable table, OMMonitor monitor, DBUtil.DeserializeRowHandler handler)
           
 boolean IDBAdapter.dropTable(IDBTable table, Statement statement)
           
static void DBUtil.serializeTable(ExtendedDataOutput out, Connection connection, IDBTable table, String tableAlias, String sqlSuffix)
           
static void DBUtil.serializeTable(ExtendedDataOutput out, Connection connection, IDBTable table, String tableAlias, String sqlSuffix, DBUtil.SerializeRowHandler handler)
           
 

Method parameters in org.eclipse.net4j.db with type arguments of type IDBTable
 Set<IDBTable> IDBAdapter.createTables(Iterable<? extends IDBTable> tables, Connection connection)
           
 Collection<IDBTable> IDBAdapter.dropTables(Iterable<? extends IDBTable> tables, Connection connection)
           
 

Uses of IDBTable in org.eclipse.net4j.db.ddl
 

Methods in org.eclipse.net4j.db.ddl that return IDBTable
 IDBTable IDBSchema.addTable(String name)
           
 IDBTable IDBField.getTable()
           
 IDBTable IDBIndex.getTable()
           
 IDBTable IDBSchema.getTable(String name)
           
 IDBTable[] IDBSchema.getTables()
           
 IDBTable IDBSchema.removeTable(String name)
           
 

Methods in org.eclipse.net4j.db.ddl that return types with arguments of type IDBTable
 Set<IDBTable> IDBSchema.create(IDBAdapter dbAdapter, Connection connection)
           
 Set<IDBTable> IDBSchema.create(IDBAdapter dbAdapter, DataSource dataSource)
           
 Set<IDBTable> IDBSchema.create(IDBAdapter dbAdapter, IDBConnectionProvider connectionProvider)
           
 

Uses of IDBTable in org.eclipse.net4j.db.postgresql
 

Methods in org.eclipse.net4j.db.postgresql with parameters of type IDBTable
 boolean PostgreSQLAdapter.createTable(IDBTable table, Statement statement)
           
 

Uses of IDBTable in org.eclipse.net4j.spi.db
 

Methods in org.eclipse.net4j.spi.db that return IDBTable
 IDBTable DBSchema.addTable(String name)
           
 IDBTable DBSchema.getTable(String name)
           
 IDBTable[] DBSchema.getTables()
           
 IDBTable DBSchema.removeTable(String name)
           
 

Methods in org.eclipse.net4j.spi.db that return types with arguments of type IDBTable
 Set<IDBTable> DBSchema.create(IDBAdapter dbAdapter, Connection connection)
           
 Set<IDBTable> DBSchema.create(IDBAdapter dbAdapter, DataSource dataSource)
           
 Set<IDBTable> DBSchema.create(IDBAdapter dbAdapter, IDBConnectionProvider connectionProvider)
           
 Set<IDBTable> DBAdapter.createTables(Iterable<? extends IDBTable> tables, Connection connection)
           
 Collection<IDBTable> DBAdapter.dropTables(Iterable<? extends IDBTable> tables, Connection connection)
           
 

Methods in org.eclipse.net4j.spi.db with parameters of type IDBTable
 void DBAdapter.appendFieldNames(Appendable appendable, IDBTable table)
           
protected  String DBAdapter.createConstraints(IDBTable table)
           
 boolean DBAdapter.createTable(IDBTable table, Statement statement)
           
protected  void DBAdapter.doCreateTable(IDBTable table, Statement statement)
           
 boolean DBAdapter.dropTable(IDBTable table, Statement statement)
           
protected  String DBAdapter.getDropTableSQL(IDBTable table)
           
protected  void DBAdapter.validateTable(IDBTable table, Statement statement)
           
 

Method parameters in org.eclipse.net4j.spi.db with type arguments of type IDBTable
 Set<IDBTable> DBAdapter.createTables(Iterable<? extends IDBTable> tables, Connection connection)
           
 Collection<IDBTable> DBAdapter.dropTables(Iterable<? extends IDBTable> tables, Connection connection)
           
 



Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.