Methods in org.eclipse.net4j.db that throw DBException |
boolean |
IDBAdapter.createTable(IDBTable table,
java.sql.Statement statement)
|
java.util.Set<IDBTable> |
IDBAdapter.createTables(java.lang.Iterable<? extends IDBTable> tables,
java.sql.Connection connection)
|
java.util.Collection<IDBTable> |
IDBAdapter.dropTables(java.lang.Iterable<? extends IDBTable> tables,
java.sql.Connection connection)
|
java.sql.Connection |
IDBConnectionProvider.getConnection()
|
static void |
DBUtil.insertRow(java.sql.Connection connection,
IDBAdapter dbAdapter,
IDBTable table,
java.lang.Object... args)
|
static int |
DBUtil.select(java.sql.Connection connection,
IDBRowHandler rowHandler,
IDBField... fields)
|
static int |
DBUtil.select(java.sql.Connection connection,
IDBRowHandler rowHandler,
java.lang.String where,
IDBField... fields)
|
static java.lang.Object[] |
DBUtil.select(java.sql.Connection connection,
java.lang.String where,
IDBField... fields)
|
static int |
DBUtil.selectMaximumInt(java.sql.Connection connection,
IDBField field)
|
static long |
DBUtil.selectMaximumLong(java.sql.Connection connection,
IDBField field)
|
Methods in org.eclipse.net4j.spi.db that throw DBException |
org.eclipse.net4j.internal.db.ddl.DBTable |
DBSchema.addTable(java.lang.String name)
|
void |
DBSchema.assertUnlocked()
|
java.util.Set<IDBTable> |
DBSchema.create(IDBAdapter dbAdapter,
java.sql.Connection connection)
|
java.util.Set<IDBTable> |
DBSchema.create(IDBAdapter dbAdapter,
javax.sql.DataSource dataSource)
|
java.util.Set<IDBTable> |
DBSchema.create(IDBAdapter dbAdapter,
IDBConnectionProvider connectionProvider)
|
boolean |
DBAdapter.createTable(IDBTable table,
java.sql.Statement statement)
|
java.util.Set<IDBTable> |
DBAdapter.createTables(java.lang.Iterable<? extends IDBTable> tables,
java.sql.Connection connection)
|
void |
DBSchema.drop(IDBAdapter dbAdapter,
java.sql.Connection connection)
|
void |
DBSchema.drop(IDBAdapter dbAdapter,
javax.sql.DataSource dataSource)
|
void |
DBSchema.drop(IDBAdapter dbAdapter,
IDBConnectionProvider connectionProvider)
|
java.util.Collection<IDBTable> |
DBAdapter.dropTables(java.lang.Iterable<? extends IDBTable> tables,
java.sql.Connection connection)
|
void |
DBSchema.export(java.sql.Connection connection,
java.io.PrintStream out)
|
void |
DBSchema.export(javax.sql.DataSource dataSource,
java.io.PrintStream out)
|
void |
DBSchema.export(IDBConnectionProvider connectionProvider,
java.io.PrintStream out)
|
protected void |
DBAdapter.validateTable(org.eclipse.net4j.internal.db.ddl.DBTable table,
java.sql.Statement statement)
|