A C D E F G H I L M N O P R S T U V W

A

adaptType(DBType) - Method in interface org.eclipse.net4j.db.IDBAdapter
Provide a way for the DBAdapter to override unsupported DB types with replacements.
adaptType(DBType) - Method in class org.eclipse.net4j.db.postgresql.PostgreSQLAdapter
 
adaptType(DBType) - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
addField(String, DBType) - Method in interface org.eclipse.net4j.db.ddl.IDBTable
 
addField(String, DBType, boolean) - Method in interface org.eclipse.net4j.db.ddl.IDBTable
 
addField(String, DBType, int) - Method in interface org.eclipse.net4j.db.ddl.IDBTable
 
addField(String, DBType, int, boolean) - Method in interface org.eclipse.net4j.db.ddl.IDBTable
 
addField(String, DBType, int, int) - Method in interface org.eclipse.net4j.db.ddl.IDBTable
 
addField(String, DBType, int, int, boolean) - Method in interface org.eclipse.net4j.db.ddl.IDBTable
 
addIndex(IDBIndex.Type, IDBField...) - Method in interface org.eclipse.net4j.db.ddl.IDBTable
 
addIndexField(StringBuilder, IDBField) - Method in class org.eclipse.net4j.db.mysql.MYSQLAdapter
 
addIndexField(StringBuilder, IDBField) - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
addParameter(DBType) - Method in interface org.eclipse.net4j.db.dml.IDBStatement
 
addParameter(IDBField) - Method in interface org.eclipse.net4j.db.dml.IDBStatement
 
addSQL(String) - Method in interface org.eclipse.net4j.db.dml.IDBStatement
 
addSQL(IDBParameter) - Method in interface org.eclipse.net4j.db.dml.IDBStatement
 
addSQL(IDBSchemaElement) - Method in interface org.eclipse.net4j.db.dml.IDBStatement
 
addTable(String) - Method in interface org.eclipse.net4j.db.ddl.IDBSchema
 
addTable(String) - Method in class org.eclipse.net4j.spi.db.DBSchema
 
appendFieldNames(Appendable, IDBTable) - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
assertUnlocked() - Method in class org.eclipse.net4j.spi.db.DBSchema
 

C

clearTable(Connection, IDBTable) - Static method in class org.eclipse.net4j.db.DBUtil
 
clearTable(Connection, String) - Static method in class org.eclipse.net4j.db.DBUtil
 
close(Connection) - Static method in class org.eclipse.net4j.db.DBUtil
 
close(Statement) - Static method in class org.eclipse.net4j.db.DBUtil
 
close(ResultSet) - Static method in class org.eclipse.net4j.db.DBUtil
 
create(IDBAdapter, Connection) - Method in interface org.eclipse.net4j.db.ddl.IDBSchema
 
create(IDBAdapter, DataSource) - Method in interface org.eclipse.net4j.db.ddl.IDBSchema
 
create(IDBAdapter, IDBConnectionProvider) - Method in interface org.eclipse.net4j.db.ddl.IDBSchema
 
create(IDBAdapter, Connection) - Method in class org.eclipse.net4j.spi.db.DBSchema
 
create(IDBAdapter, DataSource) - Method in class org.eclipse.net4j.spi.db.DBSchema
 
create(IDBAdapter, IDBConnectionProvider) - Method in class org.eclipse.net4j.spi.db.DBSchema
 
createConnectionProvider(DataSource) - Static method in class org.eclipse.net4j.db.DBUtil
 
createConstraints(IDBTable) - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
createDataSource(Map<Object, Object>) - Static method in class org.eclipse.net4j.db.DBUtil
 
createDataSource(Map<Object, Object>, String) - Static method in class org.eclipse.net4j.db.DBUtil
 
createDataSource(Map<Object, Object>, String, String) - Static method in class org.eclipse.net4j.db.DBUtil
 
createFieldDefinition(IDBField) - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
createIndex(IDBIndex, Statement, int) - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
createJDBCDataSource() - Method in class org.eclipse.net4j.db.derby.EmbeddedDerbyAdapter
 
createJDBCDataSource() - Method in class org.eclipse.net4j.db.h2.H2Adapter
 
createJDBCDataSource() - Method in class org.eclipse.net4j.db.hsqldb.HSQLDBAdapter
 
createJDBCDataSource() - Method in interface org.eclipse.net4j.db.IDBAdapter
 
createJDBCDataSource() - Method in class org.eclipse.net4j.db.mysql.MYSQLAdapter
 
createJDBCDataSource() - Method in class org.eclipse.net4j.db.postgresql.PostgreSQLAdapter
 
createSchema(String) - Static method in class org.eclipse.net4j.db.DBUtil
 
createTable(IDBTable, Statement) - Method in interface org.eclipse.net4j.db.IDBAdapter
 
createTable(IDBTable, Statement) - Method in class org.eclipse.net4j.db.postgresql.PostgreSQLAdapter
 
createTable(IDBTable, Statement) - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
createTables(Iterable<? extends IDBTable>, Connection) - Method in interface org.eclipse.net4j.db.IDBAdapter
 
createTables(Iterable<? extends IDBTable>, Connection) - Method in class org.eclipse.net4j.spi.db.DBAdapter
 

D

DBAdapter - Class in org.eclipse.net4j.spi.db
A useful base class for implementing custom DB adapters.
DBAdapter(String, String) - Constructor for class org.eclipse.net4j.spi.db.DBAdapter
 
DBException - Exception in org.eclipse.net4j.db
A runtime exception thrown to indicate problems with a database, frequently used to wrap checked SQL exceptions.
DBException() - Constructor for exception org.eclipse.net4j.db.DBException
 
DBException(String) - Constructor for exception org.eclipse.net4j.db.DBException
 
DBException(Throwable) - Constructor for exception org.eclipse.net4j.db.DBException
 
DBException(String, Throwable) - Constructor for exception org.eclipse.net4j.db.DBException
 
DBException(Throwable, String) - Constructor for exception org.eclipse.net4j.db.DBException
 
DBException(String, Throwable, String) - Constructor for exception org.eclipse.net4j.db.DBException
 
DBSchema - Class in org.eclipse.net4j.spi.db
A useful base class for implementing custom DB schemas.
DBSchema(String) - Constructor for class org.eclipse.net4j.spi.db.DBSchema
 
DBType - Enum in org.eclipse.net4j.db
Enumerates the SQL data types that are compatible with the DB framework.
DBUtil - Class in org.eclipse.net4j.db
A utility class with various static factory and convenience methods.
DBUtil.DeserializeRowHandler - Interface in org.eclipse.net4j.db
A row handler with a method that is called once per row deserialized within DBUtil.deserializeTable().
DBUtil.RowHandler - Interface in org.eclipse.net4j.db
Call-back interface with a method that is called after a number of table rows have been handled by one of the subtypes of this interface.
DBUtil.SerializeRowHandler - Interface in org.eclipse.net4j.db
A row handler with a method that is called once per row serialized within DBUtil.serializeTable().
DEFAULT - Static variable in interface org.eclipse.net4j.db.ddl.IDBField
 
DerbyAdapter - Class in org.eclipse.net4j.db.derby
A DB adapter for Derby databases.
DerbyAdapter(String) - Constructor for class org.eclipse.net4j.db.derby.DerbyAdapter
 
deserializeTable(ExtendedDataInput, Connection, IDBTable, OMMonitor) - Static method in class org.eclipse.net4j.db.DBUtil
 
deserializeTable(ExtendedDataInput, Connection, IDBTable, OMMonitor, DBUtil.DeserializeRowHandler) - Static method in class org.eclipse.net4j.db.DBUtil
 
doCreateTable(IDBTable, Statement) - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
done(boolean) - Method in interface org.eclipse.net4j.db.DBUtil.RowHandler
 
drop(IDBAdapter, Connection) - Method in interface org.eclipse.net4j.db.ddl.IDBSchema
 
drop(IDBAdapter, DataSource) - Method in interface org.eclipse.net4j.db.ddl.IDBSchema
 
drop(IDBAdapter, IDBConnectionProvider) - Method in interface org.eclipse.net4j.db.ddl.IDBSchema
 
drop(IDBAdapter, Connection) - Method in class org.eclipse.net4j.spi.db.DBSchema
 
drop(IDBAdapter, DataSource) - Method in class org.eclipse.net4j.spi.db.DBSchema
 
drop(IDBAdapter, IDBConnectionProvider) - Method in class org.eclipse.net4j.spi.db.DBSchema
 
dropAllTables(Connection, String) - Static method in class org.eclipse.net4j.db.DBUtil
 
dropTable(IDBTable, Statement) - Method in interface org.eclipse.net4j.db.IDBAdapter
 
dropTable(IDBTable, Statement) - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
dropTables(Iterable<? extends IDBTable>, Connection) - Method in interface org.eclipse.net4j.db.IDBAdapter
 
dropTables(Iterable<? extends IDBTable>, Connection) - Method in class org.eclipse.net4j.spi.db.DBAdapter
 

E

EmbeddedDerbyAdapter - Class in org.eclipse.net4j.db.derby
A Derby adapter for embedded databases.
EmbeddedDerbyAdapter() - Constructor for class org.eclipse.net4j.db.derby.EmbeddedDerbyAdapter
 
executeBatch(PreparedStatement, int) - Static method in class org.eclipse.net4j.db.DBUtil
 
executeBatch(PreparedStatement, int, boolean) - Static method in class org.eclipse.net4j.db.DBUtil
 
export(Connection, PrintStream) - Method in interface org.eclipse.net4j.db.ddl.IDBSchema
 
export(DataSource, PrintStream) - Method in interface org.eclipse.net4j.db.ddl.IDBSchema
 
export(IDBConnectionProvider, PrintStream) - Method in interface org.eclipse.net4j.db.ddl.IDBSchema
 
export(Connection, PrintStream) - Method in class org.eclipse.net4j.spi.db.DBSchema
 
export(DataSource, PrintStream) - Method in class org.eclipse.net4j.spi.db.DBSchema
 
export(IDBConnectionProvider, PrintStream) - Method in class org.eclipse.net4j.spi.db.DBSchema
 

F

formatPrecision() - Method in interface org.eclipse.net4j.db.ddl.IDBField
 
formatPrecisionAndScale() - Method in interface org.eclipse.net4j.db.ddl.IDBField
 

G

getAllSchemaTableNames(Connection) - Static method in class org.eclipse.net4j.db.DBUtil
 
getAllSchemaTableNames(DatabaseMetaData) - Static method in class org.eclipse.net4j.db.DBUtil
 
getAllTableNames(Connection, String) - Static method in class org.eclipse.net4j.db.DBUtil
 
getCode() - Method in enum org.eclipse.net4j.db.DBType
 
getConnection() - Method in interface org.eclipse.net4j.db.IDBConnectionProvider
Returns a connection.
getDBAdapter(String) - Static method in class org.eclipse.net4j.db.DBUtil
Can only be used when Eclipse is running.
getDropTableSQL(IDBTable) - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
getField(int) - Method in interface org.eclipse.net4j.db.ddl.IDBIndex
 
getField(String) - Method in interface org.eclipse.net4j.db.ddl.IDBTable
 
getField(int) - Method in interface org.eclipse.net4j.db.ddl.IDBTable
 
getFieldCount() - Method in interface org.eclipse.net4j.db.ddl.IDBIndex
 
getFieldCount() - Method in interface org.eclipse.net4j.db.ddl.IDBTable
 
getFields() - Method in interface org.eclipse.net4j.db.ddl.IDBIndex
 
getFields() - Method in interface org.eclipse.net4j.db.ddl.IDBTable
 
getFullName() - Method in interface org.eclipse.net4j.db.ddl.IDBField
 
getFullName() - Method in interface org.eclipse.net4j.db.ddl.IDBSchemaElement
 
getFullName() - Method in class org.eclipse.net4j.spi.db.DBSchema
 
getIndexCount() - Method in interface org.eclipse.net4j.db.ddl.IDBTable
 
getIndices() - Method in interface org.eclipse.net4j.db.ddl.IDBTable
 
getJDBCDriver() - Method in class org.eclipse.net4j.db.derby.EmbeddedDerbyAdapter
 
getJDBCDriver() - Method in class org.eclipse.net4j.db.h2.H2Adapter
 
getJDBCDriver() - Method in class org.eclipse.net4j.db.hsqldb.HSQLDBAdapter
 
getJDBCDriver() - Method in interface org.eclipse.net4j.db.IDBAdapter
 
getJDBCDriver() - Method in class org.eclipse.net4j.db.mysql.MYSQLAdapter
 
getJDBCDriver() - Method in class org.eclipse.net4j.db.postgresql.PostgreSQLAdapter
 
getKeyword() - Method in enum org.eclipse.net4j.db.DBType
 
getMaxFieldNameLength() - Method in interface org.eclipse.net4j.db.IDBAdapter
 
getMaxFieldNameLength() - Method in class org.eclipse.net4j.db.mysql.MYSQLAdapter
 
getMaxFieldNameLength() - Method in class org.eclipse.net4j.db.postgresql.PostgreSQLAdapter
 
getMaxFieldNameLength() - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
getMaxTableNameLength() - Method in interface org.eclipse.net4j.db.IDBAdapter
 
getMaxTableNameLength() - Method in class org.eclipse.net4j.db.mysql.MYSQLAdapter
 
getMaxTableNameLength() - Method in class org.eclipse.net4j.db.postgresql.PostgreSQLAdapter
 
getMaxTableNameLength() - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
getName() - Method in interface org.eclipse.net4j.db.ddl.IDBSchemaElement
 
getName() - Method in interface org.eclipse.net4j.db.IDBAdapter
 
getName() - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
getName() - Method in class org.eclipse.net4j.spi.db.DBSchema
 
getParameters() - Method in interface org.eclipse.net4j.db.dml.IDBStatement
 
getPosition() - Method in interface org.eclipse.net4j.db.ddl.IDBField
 
getPosition() - Method in interface org.eclipse.net4j.db.ddl.IDBIndex
 
getPosition() - Method in interface org.eclipse.net4j.db.dml.IDBParameter
Returns the zero based position of this parameter within the parameters list of the containing statement.
getPrecision() - Method in interface org.eclipse.net4j.db.ddl.IDBField
 
getPrimaryKeyIndex() - Method in interface org.eclipse.net4j.db.ddl.IDBTable
 
getProperties() - Method in interface org.eclipse.net4j.db.ddl.IDBSchemaElement
 
getReservedWords() - Method in class org.eclipse.net4j.db.derby.DerbyAdapter
 
getReservedWords() - Method in class org.eclipse.net4j.db.h2.H2Adapter
 
getReservedWords() - Method in class org.eclipse.net4j.db.hsqldb.HSQLDBAdapter
 
getReservedWords() - Method in interface org.eclipse.net4j.db.IDBAdapter
 
getReservedWords() - Method in class org.eclipse.net4j.db.mysql.MYSQLAdapter
 
getReservedWords() - Method in class org.eclipse.net4j.db.postgresql.PostgreSQLAdapter
 
getRowCount(ResultSet) - Static method in class org.eclipse.net4j.db.DBUtil
Returns the number of rows contained in the given result set.
getScale() - Method in interface org.eclipse.net4j.db.ddl.IDBField
 
getSchema() - Method in interface org.eclipse.net4j.db.ddl.IDBSchemaElement
 
getSchema() - Method in class org.eclipse.net4j.spi.db.DBSchema
 
getSQL() - Method in interface org.eclipse.net4j.db.dml.IDBStatement
 
getSQL92ReservedWords() - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
getStatement() - Method in interface org.eclipse.net4j.db.dml.IDBParameter
 
getTable() - Method in interface org.eclipse.net4j.db.ddl.IDBField
 
getTable() - Method in interface org.eclipse.net4j.db.ddl.IDBIndex
 
getTable(String) - Method in interface org.eclipse.net4j.db.ddl.IDBSchema
 
getTable(String) - Method in class org.eclipse.net4j.spi.db.DBSchema
 
getTables() - Method in interface org.eclipse.net4j.db.ddl.IDBSchema
 
getTables() - Method in class org.eclipse.net4j.spi.db.DBSchema
 
getType() - Method in interface org.eclipse.net4j.db.ddl.IDBField
 
getType() - Method in interface org.eclipse.net4j.db.ddl.IDBIndex
 
getType() - Method in interface org.eclipse.net4j.db.dml.IDBParameter
 
getTypeByKeyword(String) - Static method in enum org.eclipse.net4j.db.DBType
 
getTypeName(IDBField) - Method in class org.eclipse.net4j.db.derby.DerbyAdapter
 
getTypeName(IDBField) - Method in class org.eclipse.net4j.db.h2.H2Adapter
 
getTypeName(IDBField) - Method in class org.eclipse.net4j.db.hsqldb.HSQLDBAdapter
 
getTypeName(IDBField) - Method in class org.eclipse.net4j.db.mysql.MYSQLAdapter
 
getTypeName(IDBField) - Method in class org.eclipse.net4j.db.postgresql.PostgreSQLAdapter
 
getTypeName(IDBField) - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
getVersion() - Method in interface org.eclipse.net4j.db.IDBAdapter
 
getVersion() - Method in class org.eclipse.net4j.spi.db.DBAdapter
 

H

H2Adapter - Class in org.eclipse.net4j.db.h2
A DB adapter for H2 databases.
H2Adapter() - Constructor for class org.eclipse.net4j.db.h2.H2Adapter
 
handle(int, Object...) - Method in interface org.eclipse.net4j.db.IDBRowHandler
 
handleRow(ExtendedDataInput, Connection, IDBField[], Object[]) - Method in interface org.eclipse.net4j.db.DBUtil.DeserializeRowHandler
 
handleRow(ExtendedDataOutput, Connection, IDBField[], Object[]) - Method in interface org.eclipse.net4j.db.DBUtil.SerializeRowHandler
 
HSQLDBAdapter - Class in org.eclipse.net4j.db.hsqldb
A DB adapter for HyperSQL databases.
HSQLDBAdapter() - Constructor for class org.eclipse.net4j.db.hsqldb.HSQLDBAdapter
 
HSQLDBDataSource - Class in org.eclipse.net4j.db.hsqldb
An HSQLDB data source with a nicer HSQLDBDataSource.toString() method.
HSQLDBDataSource() - Constructor for class org.eclipse.net4j.db.hsqldb.HSQLDBDataSource
 

I

IDBAdapter - Interface in org.eclipse.net4j.db
Abstracts all aspects of a database that are vendor-specific.
IDBConnectionProvider - Interface in org.eclipse.net4j.db
Provides a database connection, roughly comparable with a data source.
IDBField - Interface in org.eclipse.net4j.db.ddl
A field (column) specification in a DB table.
IDBIndex - Interface in org.eclipse.net4j.db.ddl
An index specification in a DB table.
IDBIndex.Type - Enum in org.eclipse.net4j.db.ddl
The type of an index specification in a DB table.
IDBParameter - Interface in org.eclipse.net4j.db.dml
A parameter specification in a DB statement.
IDBRowHandler - Interface in org.eclipse.net4j.db
Call-back that handles the values of, for example, a row in a database table.
IDBSchema - Interface in org.eclipse.net4j.db.ddl
Specifies a number of DB tables that can be created in or dropped from a database through a DB adapter.
IDBSchemaElement - Interface in org.eclipse.net4j.db.ddl
Specifies a hierachical namespace for elements in a DB schema.
IDBStatement - Interface in org.eclipse.net4j.db.dml
Specifies an SQL statement with zero or more parameters.
IDBTable - Interface in org.eclipse.net4j.db.ddl
A table specification in a DB schema.
isDuplicateKeyException(SQLException) - Method in class org.eclipse.net4j.db.h2.H2Adapter
 
isDuplicateKeyException(SQLException) - Method in interface org.eclipse.net4j.db.IDBAdapter
Check if an exception indicates a constraint violation (duplicate key)
isDuplicateKeyException(SQLException) - Method in class org.eclipse.net4j.db.mysql.MYSQLAdapter
 
isDuplicateKeyException(SQLException) - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
isLocked() - Method in class org.eclipse.net4j.spi.db.DBSchema
 
isNotNull() - Method in interface org.eclipse.net4j.db.ddl.IDBField
 
isReservedWord(String) - Method in interface org.eclipse.net4j.db.IDBAdapter
 
isReservedWord(String) - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
isTypeIndexable(DBType) - Method in interface org.eclipse.net4j.db.IDBAdapter
 
isTypeIndexable(DBType) - Method in class org.eclipse.net4j.db.mysql.MYSQLAdapter
 
isTypeIndexable(DBType) - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
isValidFirstChar(char) - Method in class org.eclipse.net4j.db.derby.DerbyAdapter
 
isValidFirstChar(char) - Method in interface org.eclipse.net4j.db.IDBAdapter
Check if a character is valid as first character.
isValidFirstChar(char) - Method in class org.eclipse.net4j.spi.db.DBAdapter
 

L

lock() - Method in class org.eclipse.net4j.spi.db.DBSchema
 

M

MYSQLAdapter - Class in org.eclipse.net4j.db.mysql
A DB adapter for MySQL databases.
MYSQLAdapter() - Constructor for class org.eclipse.net4j.db.mysql.MYSQLAdapter
 

N

NAME - Static variable in class org.eclipse.net4j.db.derby.EmbeddedDerbyAdapter
 
NAME - Static variable in class org.eclipse.net4j.db.mysql.MYSQLAdapter
 
NAME - Static variable in class org.eclipse.net4j.db.postgresql.PostgreSQLAdapter
 

O

org.eclipse.net4j.db - package org.eclipse.net4j.db
The Net4j DB framework.
org.eclipse.net4j.db.ddl - package org.eclipse.net4j.db.ddl
The Net4j DB framework concepts for the abstraction of the SQL data definition language.
org.eclipse.net4j.db.derby - package org.eclipse.net4j.db.derby
The Net4j DB Framework support for Derby databases.
org.eclipse.net4j.db.dml - package org.eclipse.net4j.db.dml
The Net4j DB framework concepts for the abstraction of the SQL data manipulation language.
org.eclipse.net4j.db.h2 - package org.eclipse.net4j.db.h2
The Net4j DB Framework support for H2 databases.
org.eclipse.net4j.db.hsqldb - package org.eclipse.net4j.db.hsqldb
The Net4j DB Framework support for HSQLDB databases.
org.eclipse.net4j.db.mysql - package org.eclipse.net4j.db.mysql
The Net4j DB Framework support for MYSQL databases.
org.eclipse.net4j.db.postgresql - package org.eclipse.net4j.db.postgresql
The Net4j DB Framework support for PostgreSQL databases.
org.eclipse.net4j.spi.db - package org.eclipse.net4j.spi.db
Server service provider interfaces and useful base implementations for the Net4j DB framework.

P

PostgreSQLAdapter - Class in org.eclipse.net4j.db.postgresql
A DB adapter for PostgreSQL databases.
PostgreSQLAdapter() - Constructor for class org.eclipse.net4j.db.postgresql.PostgreSQLAdapter
 

R

readValue(ExtendedDataInput, PreparedStatement, int, boolean) - Method in enum org.eclipse.net4j.db.DBType
 
readValueWithResult(ExtendedDataInput, PreparedStatement, int, boolean) - Method in enum org.eclipse.net4j.db.DBType
 
REGISTRY - Static variable in interface org.eclipse.net4j.db.IDBAdapter
 
removeTable(String) - Method in interface org.eclipse.net4j.db.ddl.IDBSchema
 
removeTable(String) - Method in class org.eclipse.net4j.spi.db.DBSchema
 

S

select(Connection, IDBRowHandler, String, IDBField...) - Static method in class org.eclipse.net4j.db.DBUtil
 
select(Connection, IDBRowHandler, IDBField...) - Static method in class org.eclipse.net4j.db.DBUtil
 
select(Connection, String, IDBField...) - Static method in class org.eclipse.net4j.db.DBUtil
 
selectMaximumInt(Connection, IDBField, String...) - Static method in class org.eclipse.net4j.db.DBUtil
 
selectMaximumLong(Connection, IDBField, String...) - Static method in class org.eclipse.net4j.db.DBUtil
 
selectMinimumInt(Connection, IDBField, String...) - Static method in class org.eclipse.net4j.db.DBUtil
 
selectMinimumLong(Connection, IDBField, String...) - Static method in class org.eclipse.net4j.db.DBUtil
 
serializeTable(ExtendedDataOutput, Connection, IDBTable, String, String) - Static method in class org.eclipse.net4j.db.DBUtil
 
serializeTable(ExtendedDataOutput, Connection, IDBTable, String, String, DBUtil.SerializeRowHandler) - Static method in class org.eclipse.net4j.db.DBUtil
 
setName(String) - Method in interface org.eclipse.net4j.db.ddl.IDBField
 
setNotNull(boolean) - Method in interface org.eclipse.net4j.db.ddl.IDBField
 
setPrecision(int) - Method in interface org.eclipse.net4j.db.ddl.IDBField
 
setScale(int) - Method in interface org.eclipse.net4j.db.ddl.IDBField
 
setType(DBType) - Method in interface org.eclipse.net4j.db.ddl.IDBField
 
sqlDump(Connection, String) - Static method in class org.eclipse.net4j.db.DBUtil
Deprecated. Should only be used when debugging.
sqlDump(IDBConnectionProvider, String) - Static method in class org.eclipse.net4j.db.DBUtil
Deprecated. Should only be used when debugging.
sqlInsert() - Method in interface org.eclipse.net4j.db.ddl.IDBTable
 

T

toString() - Method in enum org.eclipse.net4j.db.DBType
 
toString() - Method in class org.eclipse.net4j.db.hsqldb.HSQLDBDataSource
 
toString() - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
trace(String) - Static method in class org.eclipse.net4j.db.DBUtil
 

U

update(Connection, String) - Static method in class org.eclipse.net4j.db.DBUtil
 
update(PreparedStatement, boolean) - Static method in class org.eclipse.net4j.db.DBUtil
Execute update on the given prepared statement and handle common cases of return values.

V

validateTable(IDBTable, Statement) - Method in class org.eclipse.net4j.spi.db.DBAdapter
 
valueOf(String) - Static method in enum org.eclipse.net4j.db.DBType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.eclipse.net4j.db.ddl.IDBIndex.Type
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.eclipse.net4j.db.DBType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.eclipse.net4j.db.ddl.IDBIndex.Type
Returns an array containing the constants of this enum type, in the order they are declared.
VERSION - Static variable in class org.eclipse.net4j.db.derby.DerbyAdapter
 
VERSION - Static variable in class org.eclipse.net4j.db.h2.H2Adapter
 
VERSION - Static variable in class org.eclipse.net4j.db.hsqldb.HSQLDBAdapter
 
VERSION - Static variable in class org.eclipse.net4j.db.mysql.MYSQLAdapter
 
VERSION - Static variable in class org.eclipse.net4j.db.postgresql.PostgreSQLAdapter
 

W

writeValue(ExtendedDataOutput, ResultSet, int, boolean) - Method in enum org.eclipse.net4j.db.DBType
 
writeValueWithResult(ExtendedDataOutput, ResultSet, int, boolean) - Method in enum org.eclipse.net4j.db.DBType
 

A C D E F G H I L M N O P R S T U V W

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