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

A

absolute(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Moves the cursor to the given row number in this ResultSet object.
acceptsURL(String) - Method in class org.hsqldb.jdbcDriver
Returns true if the driver thinks that it can open a connection to the given URL.
addBatch() - Method in class org.hsqldb.jdbc.jdbcPreparedStatement
Adds a set of parameters to this PreparedStatement object's batch of commands.
addBatch(String) - Method in class org.hsqldb.jdbc.jdbcPreparedStatement
This method should always throw if called for a PreparedStatement or CallableStatment.
addBatch(String) - Method in class org.hsqldb.jdbc.jdbcStatement
Adds the given SQL command to the current list of commmands for this Statement object.
afterLast() - Method in class org.hsqldb.jdbc.jdbcResultSet
Moves the cursor to the end of this ResultSet object, just after the last row.
allProceduresAreCallable() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves whether the current user can call all the procedures returned by the method getProcedures.
allTablesAreSelectable() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves whether the current user can use all the tables returned by the method getTables in a SELECT statement.

B

beforeFirst() - Method in class org.hsqldb.jdbc.jdbcResultSet
Moves the cursor to the front of this ResultSet object, just before the first row.

C

CLOSE_CURSORS_AT_COMMIT - Static variable in class org.hsqldb.jdbc.jdbcResultSet
Copy of java.sql.ResultSet constant, for JDK 1.1 clients.
CONCUR_READ_ONLY - Static variable in class org.hsqldb.jdbc.jdbcResultSet
Copy of java.sql.ResultSet constant, for JDK 1.1 clients.
CONCUR_UPDATABLE - Static variable in class org.hsqldb.jdbc.jdbcResultSet
Copy of java.sql.ResultSet constant, for JDK 1.1 clients.
CONNECTERR_EXITVAL - Static variable in class org.hsqldb.util.SqlTool
 
cancel() - Method in class org.hsqldb.jdbc.jdbcStatement
Cancels this Statement object if both the DBMS and driver support aborting an SQL statement.
cancelRowUpdates() - Method in class org.hsqldb.jdbc.jdbcResultSet
Cancels the updates made to the current row in this ResultSet object.
catalogName - Variable in class org.hsqldb.jdbc.jdbcColumnMetaData
The column's table's catalog name.
checkRunning(boolean) - Method in class org.hsqldb.Server
Checks if this Server object is or is not running and throws if the current state does not match the specified value.
clearBatch() - Method in class org.hsqldb.jdbc.jdbcStatement
Empties this Statement object's current list of SQL commands.
clearParameters() - Method in class org.hsqldb.jdbc.jdbcPreparedStatement
Clears the current parameter values immediately.
clearWarnings() - Method in class org.hsqldb.jdbc.jdbcConnection
Clears all warnings reported for this Connection object.
clearWarnings() - Method in class org.hsqldb.jdbc.jdbcResultSet
Clears all warnings reported on this ResultSet object.
clearWarnings() - Method in class org.hsqldb.jdbc.jdbcStatement
Clears all the warnings reported on this Statement object.
close() - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Does the specialized work required to free this object's resources and that of it's parent classes.
close() - Method in class org.hsqldb.jdbc.jdbcConnection
Releases this Connection object's database and JDBC resources immediately instead of waiting for them to be automatically released.
close() - Method in class org.hsqldb.jdbc.jdbcPreparedStatement
Does the specialized work required to free this object's resources and that of it's parent class.
close() - Method in class org.hsqldb.jdbc.jdbcResultSet
Releases this ResultSet object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed.
close() - Method in class org.hsqldb.jdbc.jdbcStatement
Releases this Statement object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed.
columnClassName - Variable in class org.hsqldb.jdbc.jdbcColumnMetaData
The fully-qualified name of the Java class whose instances are manufactured if the method ResultSet.getObject is called to retrieve a value from the column.
columnDisplaySize - Variable in class org.hsqldb.jdbc.jdbcColumnMetaData
The column's normal max width in chars.
columnLabel - Variable in class org.hsqldb.jdbc.jdbcColumnMetaData
The suggested column title for use in printouts and displays.
columnName - Variable in class org.hsqldb.jdbc.jdbcColumnMetaData
The column's name.
columnType - Variable in class org.hsqldb.jdbc.jdbcColumnMetaData
The column's SQL type.
columnTypeName - Variable in class org.hsqldb.jdbc.jdbcColumnMetaData
The column's database-specific type name.
commit() - Method in class org.hsqldb.jdbc.jdbcConnection
Makes all changes made since the previous commit/rollback permanent and releases any database locks currently held by the Connection.
connect(String, Properties) - Method in class org.hsqldb.jdbcDriver
Attempts to make a database connection to the given URL.
connectionClosedException() - Static method in class org.hsqldb.jdbc.Util
 
createStatement() - Method in class org.hsqldb.jdbc.jdbcConnection
Creates a Statement object for sending SQL statements to the database.
createStatement(int, int) - Method in class org.hsqldb.jdbc.jdbcConnection
Creates a Statement object that will generate ResultSet objects with the given type and concurrency.
createStatement(int, int, int) - Method in class org.hsqldb.jdbc.jdbcConnection
Creates a Statement object that will generate ResultSet objects with the given type, concurrency, and holdability.

D

DEFAULT_JDBC_DRIVER - Static variable in class org.hsqldb.util.RCData
 
DELETE_AFTER - Static variable in interface org.hsqldb.Trigger
 
DELETE_AFTER_ROW - Static variable in interface org.hsqldb.Trigger
 
DELETE_BEFORE - Static variable in interface org.hsqldb.Trigger
 
DELETE_BEFORE_ROW - Static variable in interface org.hsqldb.Trigger
 
dataDefinitionCausesTransactionCommit() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves whether a data definition statement within a transaction forces the transaction to commit.
dataDefinitionIgnoredInTransactions() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves whether this database ignores a data definition statement within a transaction.
deleteRow() - Method in class org.hsqldb.jdbc.jdbcResultSet
Deletes the current row from this ResultSet object and from the underlying database.
deletesAreDetected(int) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves whether or not a visible row delete can be detected by calling the method ResultSet.rowDeleted.
doesMaxRowSizeIncludeBlobs() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves whether the return value for the method getMaxRowSize includes the SQL data types LONGVARCHAR and LONGVARBINARY.

E

execute() - Method in class org.hsqldb.jdbc.jdbcPreparedStatement
Executes the SQL statement in this PreparedStatement object, which may be any kind of SQL statement.
execute(String) - Method in class org.hsqldb.jdbc.jdbcPreparedStatement
This method should always throw if called for a PreparedStatement or CallableStatment.
execute(String) - Method in class org.hsqldb.jdbc.jdbcStatement
Executes the given SQL statement, which may return multiple results.
execute(String, int) - Method in class org.hsqldb.jdbc.jdbcStatement
Executes the given SQL statement, which may return multiple results, and signals the driver that any auto-generated keys should be made available for retrieval.
execute(String, int[]) - Method in class org.hsqldb.jdbc.jdbcStatement
Executes the given SQL statement, which may return multiple results, and signals the driver that the auto-generated keys indicated in the given array should be made available for retrieval.
execute(String, String[]) - Method in class org.hsqldb.jdbc.jdbcStatement
Executes the given SQL statement, which may return multiple results, and signals the driver that the auto-generated keys indicated in the given array should be made available for retrieval.
executeBatch() - Method in class org.hsqldb.jdbc.jdbcPreparedStatement
Submits a batch of commands to the database for execution and if all commands execute successfully, returns an array of update counts.
executeBatch() - Method in class org.hsqldb.jdbc.jdbcStatement
Submits a batch of commands to the database for execution and if all commands execute successfully, returns an array of update counts.
executeQuery() - Method in class org.hsqldb.jdbc.jdbcPreparedStatement
Executes the SQL query in this PreparedStatement object and returns the ResultSet object generated by the query.
executeQuery(String) - Method in class org.hsqldb.jdbc.jdbcPreparedStatement
This method should always throw if called for a PreparedStatement or CallableStatment.
executeQuery(String) - Method in class org.hsqldb.jdbc.jdbcStatement
Executes the given SQL statement, which returns a single ResultSet object.
executeUpdate() - Method in class org.hsqldb.jdbc.jdbcPreparedStatement
Executes the SQL statement in this PreparedStatement object, which must be an SQL INSERT, UPDATE or DELETE statement; or an SQL statement that returns nothing, such as a DDL statement.
executeUpdate(String) - Method in class org.hsqldb.jdbc.jdbcPreparedStatement
This method should always throw if called for a PreparedStatement or CallableStatment.
executeUpdate(String) - Method in class org.hsqldb.jdbc.jdbcStatement
Executes the given SQL statement, which may be an INSERT, UPDATE, or DELETE statement or an SQL statement that returns nothing, such as an SQL DDL statement.
executeUpdate(String, int) - Method in class org.hsqldb.jdbc.jdbcStatement
Executes the given SQL statement and signals the driver with the given flag about whether the auto-generated keys produced by this Statement object should be made available for retrieval.
executeUpdate(String, int[]) - Method in class org.hsqldb.jdbc.jdbcStatement
Executes the given SQL statement and signals the driver that the auto-generated keys indicated in the given array should be made available for retrieval.
executeUpdate(String, String[]) - Method in class org.hsqldb.jdbc.jdbcStatement
Executes the given SQL statement and signals the driver that the auto-generated keys indicated in the given array should be made available for retrieval.
expandSysPropVars(String) - Static method in class org.hsqldb.util.RCData
 

F

FETCH_FORWARD - Static variable in class org.hsqldb.jdbc.jdbcResultSet
Copy of java.sql.ResultSet constant, for JDK 1.1 clients.
FETCH_REVERSE - Static variable in class org.hsqldb.jdbc.jdbcResultSet
Copy of java.sql.ResultSet constant, for JDK 1.1 clients.
FETCH_UNKNOWN - Static variable in class org.hsqldb.jdbc.jdbcResultSet
Copy of java.sql.ResultSet constant, for JDK 1.1 clients.
FILEERR_EXITVAL - Static variable in class org.hsqldb.util.SqlTool
 
findColumn(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Maps the given ResultSet column name to its ResultSet column index.
fire(int, String, String, Object[], Object[]) - Method in interface org.hsqldb.Trigger
The method invoked upon each triggered action.
fire(int, String, String, Object[], Object[]) - Method in class org.hsqldb.sample.TriggerSample
A sample HSQLDB Trigger interface implementation.
first() - Method in class org.hsqldb.jdbc.jdbcResultSet
Moves the cursor to the first row in this ResultSet object.

G

getAddress() - Method in class org.hsqldb.Server
Retrieves, in string form, this server's host address.
getArray(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC ARRAY parameter as an Array object in the Java programming language.
getArray(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC ARRAY parameter as an Array object in the Java programming language.
getArray(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as an Array object in the Java programming language.
getArray(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as an Array object in the Java programming language.
getAsciiStream() - Method in class org.hsqldb.jdbc.jdbcClob
Retrieves the CLOB value designated by this Clob object as an ascii stream.
getAsciiStream(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a stream of ASCII characters.
getAsciiStream(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a stream of ASCII characters.
getAttributes(String, String, String, String) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a description of the given attribute of the given type for a user-defined type (UDT) that is available in the given schema and catalog.
getAutoCommit() - Method in class org.hsqldb.jdbc.jdbcConnection
Gets the current auto-commit state.
getBestRowIdentifier(String, String, String, int, boolean) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a description of a table's optimal set of columns that uniquely identifies a row.
getBigDecimal(int, int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Deprecated. use getBigDecimal(int parameterIndex) or getBigDecimal(String parameterName)
getBigDecimal(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC NUMERIC parameter as a java.math.BigDecimal object with as many digits to the right of the decimal point as the value contains.
getBigDecimal(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC NUMERIC parameter as a java.math.BigDecimal object with as many digits to the right of the decimal point as the value contains.
getBigDecimal(int, int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Deprecated. by java.sun.com as of JDK 1.2
getBigDecimal(String, int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Deprecated. by java.sun.com as of JDK 1.2
getBigDecimal(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.math.BigDecimal with full precision.
getBigDecimal(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.math.BigDecimal with full precision.
getBinaryStream() - Method in class org.hsqldb.jdbc.jdbcBlob
Retrieves the BLOB value designated by this Blob instance as a stream.
getBinaryStream(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a binary stream of uninterpreted bytes.
getBinaryStream(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a stream of uninterpreted bytes.
getBlob(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC BLOB parameter as a Blob object in the Java programming language.
getBlob(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC BLOB parameter as a Blob object in the Java programming language.
getBlob(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a Blob object in the Java programming language.
getBlob(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a Blob object in the Java programming language.
getBoolean(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC BIT parameter as a boolean in the Java programming language.
getBoolean(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
(JDBC4 modified:) Retrieves the value of a JDBC BIT or BOOLEAN parameter as a boolean in the Java programming language.
getBoolean(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a boolean in the Java programming language.
getBoolean(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a boolean in the Java programming language.
getByte(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC TINYINT parameter as a byte in the Java programming language.
getByte(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC TINYINT parameter as a byte in the Java programming language.
getByte(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a byte in the Java programming language.
getByte(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a byte in the Java programming language.
getBytes(long, int) - Method in class org.hsqldb.jdbc.jdbcBlob
Retrieves all or part of the BLOB value that this Blob object represents, as an array of bytes.
getBytes(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC BINARY or VARBINARY parameter as an array of byte values in the Java programming language.
getBytes(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC BINARY or VARBINARY parameter as an array of byte values in the Java programming language.
getBytes(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a byte array in the Java programming language.
getBytes(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a byte array in the Java programming language.
getCatalog() - Method in class org.hsqldb.jdbc.jdbcConnection
Returns the Connection's current catalog name.
getCatalogName(int) - Method in class org.hsqldb.jdbc.jdbcResultSetMetaData
Gets the designated column's table's catalog name.
getCatalogSeparator() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the String that this database uses as the separator between a catalog and table name.
getCatalogTerm() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the database vendor's preferred term for "catalog".
getCatalogs() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the catalog names available in this database.
getCharacterStream() - Method in class org.hsqldb.jdbc.jdbcClob
Retrieves the CLOB value designated by this Clob object as a java.io.Reader object (or as a stream of characters).
getCharacterStream(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.io.Reader object.
getCharacterStream(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.io.Reader object.
getClob(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC CLOB parameter as a Clob object in the Java programming language.
getClob(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC CLOB parameter as a Clob object in the Java programming language.
getClob(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a Clob object in the Java programming language.
getClob(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a Clob object in the Java programming language.
getColumnClassName(int) - Method in class org.hsqldb.jdbc.jdbcResultSetMetaData
Returns the fully-qualified name of the Java class whose instances are manufactured if the method ResultSet.getObject is called to retrieve a value from the column.
getColumnCount() - Method in class org.hsqldb.jdbc.jdbcResultSetMetaData
Returns the number of columns in this ResultSet object.
getColumnDisplaySize(int) - Method in class org.hsqldb.jdbc.jdbcResultSetMetaData
Indicates the designated column's normal maximum width in characters.
getColumnLabel(int) - Method in class org.hsqldb.jdbc.jdbcResultSetMetaData
Gets the designated column's suggested title for use in printouts and displays.
getColumnName(int) - Method in class org.hsqldb.jdbc.jdbcResultSetMetaData
Get the designated column's name.
getColumnPrivileges(String, String, String, String) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a description of the access rights for a table's columns.
getColumnType(int) - Method in class org.hsqldb.jdbc.jdbcResultSetMetaData
Retrieves the designated column's SQL type.
getColumnTypeName(int) - Method in class org.hsqldb.jdbc.jdbcResultSetMetaData
Retrieves the designated column's database-specific type name.
getColumns(String, String, String, String) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a description of table columns available in the specified catalog.
getConcurrency() - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the concurrency mode of this ResultSet object.
getConnection() - Method in class org.hsqldb.jdbc.jdbcDataSource
Attempts to establish a connection with the data source that this DataSource object represents.
getConnection(String, String) - Method in class org.hsqldb.jdbc.jdbcDataSource
Attempts to establish a connection with the data source that this DataSource object represents.
getConnection() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the connection that produced this metadata object.
getConnection() - Method in class org.hsqldb.jdbc.jdbcStatement
Retrieves the Connection object that produced this Statement object.
getConnection(String, Properties) - Static method in class org.hsqldb.jdbcDriver
 
getConnection() - Method in class org.hsqldb.util.RCData
Gets a JDBC Connection using the data of this RCData object.
getConnection(String, String, String) - Method in class org.hsqldb.util.RCData
Gets a JDBC Connection using the data of this RCData object with specified override elements
getCrossReference(String, String, String, String, String, String) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a description of the foreign key columns in the given foreign key table that reference the primary key columns of the given primary key table (describe how one table imports another's key).
getCursorName() - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the name of the SQL cursor used by this ResultSet object.
getDatabase() - Method in class org.hsqldb.jdbc.jdbcDataSource
Retrieves the jdbc database connection url attribute.
getDatabaseMajorVersion() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the major version number of the underlying database.
getDatabaseMinorVersion() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the minor version number of the underlying database.
getDatabaseName(int, boolean) - Method in class org.hsqldb.Server
Retrieves the url alias (network name) of the i'th database that this Server hosts.
getDatabasePath(int, boolean) - Method in class org.hsqldb.Server
Retrieves the HSQLDB path descriptor (uri) of the i'th Database that this Server hosts.
getDatabaseProductName() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the name of this database product.
getDatabaseProductVersion() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the version number of this database product.
getDatabaseType(int) - Method in class org.hsqldb.Server
 
getDate(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC DATE parameter as a java.sql.Date object.
getDate(int, Calendar) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC DATE parameter as a java.sql.Date object, using the given Calendar object to construct the date.
getDate(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC DATE parameter as a java.sql.Date object.
getDate(String, Calendar) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC DATE parameter as a java.sql.Date object, using the given Calendar object to construct the date.
getDate(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date object in the Java programming language.
getDate(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date object in the Java programming language.
getDate(int, Calendar) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date object in the Java programming language.
getDate(String, Calendar) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date object in the Java programming language.
getDefaultJdbcDriverName() - Method in class org.hsqldb.util.RCData
 
getDefaultTransactionIsolation() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves this database's default transaction isolation level.
getDefaultWebPage() - Method in class org.hsqldb.Server
Retrieves the name of the web page served when no page is specified.
getDefaultWebPage() - Method in class org.hsqldb.WebServer
Retrieves the name of the web page served when no page is specified.
getDouble(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC DOUBLE parameter as a double in the Java programming language.
getDouble(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC DOUBLE parameter as a double in the Java programming language.
getDouble(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a double in the Java programming language.
getDouble(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a double in the Java programming language.
getDriverMajorVersion() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves this JDBC driver's major version number.
getDriverMinorVersion() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves this JDBC driver's minor version number.
getDriverName() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the name of this JDBC driver.
getDriverVersion() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the version number of this JDBC driver as a String.
getErrWriter() - Method in class org.hsqldb.Server
Retrieves the PrintWriter to which server errors are printed.
getExportedKeys(String, String, String) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a description of the foreign key columns that reference the given table's primary key columns (the foreign keys exported by a table).
getExtraNameCharacters() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves all the "extra" characters that can be used in unquoted identifier names (those beyond a-z, A-Z, 0-9 and _).
getFetchDirection() - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the fetch direction for this ResultSet object.
getFetchDirection() - Method in class org.hsqldb.jdbc.jdbcStatement
Retrieves the direction for fetching rows from database tables that is the default for result sets generated from this Statement object.
getFetchSize() - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the fetch size for this ResultSet object.
getFetchSize() - Method in class org.hsqldb.jdbc.jdbcStatement
Retrieves the number of result set rows that is the default fetch size for ResultSet objects generated from this Statement object.
getFloat(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC FLOAT parameter as a float in the Java programming language.
getFloat(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC FLOAT parameter as a float in the Java programming language.
getFloat(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a float in the Java programming language.
getFloat(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a float in the Java programming language.
getForEachSpec(int) - Static method in class org.hsqldb.sample.TriggerSample
 
getGeneratedKeys() - Method in class org.hsqldb.jdbc.jdbcStatement
Retrieves any auto-generated keys created as a result of executing this Statement object.
getHelpString() - Method in class org.hsqldb.Server
Retrieves a String object describing the command line and properties options for this Server.
getHelpString() - Method in class org.hsqldb.WebServer
Retrieves a String object describing the command line and properties options for this Server.
getHoldability() - Method in class org.hsqldb.jdbc.jdbcConnection
Retrieves the current holdability of ResultSet objects created using this Connection object.
getIdentifierQuoteString() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the string used to quote SQL identifiers.
getImportedKeys(String, String, String) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a description of the primary key columns that are referenced by a table's foreign key columns (the primary keys imported by a table).
getIndexInfo(String, String, String, boolean, boolean) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a description of the given table's indices and statistics.
getInt(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC INTEGER parameter as an int in the Java programming language.
getInt(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC INTEGER parameter as an int in the Java programming language.
getInt(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as an int in the Java programming language.
getInt(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as an int in the Java programming language.
getJDBCMajorVersion() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the major JDBC version number for this driver.
getJDBCMinorVersion() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the minor JDBC version number for this driver.
getLogWriter() - Method in class org.hsqldb.Server
Retrieves the PrintWriter to which server messages are printed.
getLogWriter() - Method in class org.hsqldb.jdbc.jdbcDataSource
Retrieves the log writer for this DataSource object.
getLoginTimeout() - Method in class org.hsqldb.jdbc.jdbcDataSource
Gets the maximum time in seconds that this data source can wait while attempting to connect to a database.
getLong(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC BIGINT parameter as a long in the Java programming language.
getLong(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC BIGINT parameter as a long in the Java programming language.
getLong(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a long in the Java programming language.
getLong(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a long in the Java programming language.
getMajorVersion() - Method in class org.hsqldb.jdbcDriver
Gets the driver's major version number.
getMaxBinaryLiteralLength() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of hex characters this database allows in an inline binary literal.
getMaxCatalogNameLength() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of characters that this database allows in a catalog name.
getMaxCharLiteralLength() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of characters this database allows for a character literal.
getMaxColumnNameLength() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of characters this database allows for a column name.
getMaxColumnsInGroupBy() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of columns this database allows in a GROUP BY clause.
getMaxColumnsInIndex() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of columns this database allows in an index.
getMaxColumnsInOrderBy() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of columns this database allows in an ORDER BY clause.
getMaxColumnsInSelect() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of columns this database allows in a SELECT list.
getMaxColumnsInTable() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of columns this database allows in a table.
getMaxConnections() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of concurrent connections to this database that are possible.
getMaxCursorNameLength() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of characters that this database allows in a cursor name.
getMaxFieldSize() - Method in class org.hsqldb.jdbc.jdbcStatement
Retrieves the maximum number of bytes that can be returned for character and binary column values in a ResultSet object produced by this Statement object.
getMaxIndexLength() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of bytes this database allows for an index, including all of the parts of the index.
getMaxProcedureNameLength() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of characters that this database allows in a procedure name.
getMaxRowSize() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of bytes this database allows in a single row.
getMaxRows() - Method in class org.hsqldb.jdbc.jdbcStatement
Retrieves the maximum number of rows that a ResultSet object produced by this Statement object can contain.
getMaxSchemaNameLength() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of characters that this database allows in a schema name.
getMaxStatementLength() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of characters this database allows in an SQL statement.
getMaxStatements() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of active statements to this database that can be open at the same time.
getMaxTableNameLength() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of characters this database allows in a table name.
getMaxTablesInSelect() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of tables this database allows in a SELECT statement.
getMaxUserNameLength() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the maximum number of characters this database allows in a user name.
getMetaData() - Method in class org.hsqldb.jdbc.jdbcConnection
Gets the metadata regarding this connection's database.
getMetaData() - Method in class org.hsqldb.jdbc.jdbcPreparedStatement
Retrieves a ResultSetMetaData object that contains information about the columns of the ResultSet object that will be returned when this PreparedStatement object is executed.
getMetaData() - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the number, types and properties of this ResultSet object's columns.
getMinorVersion() - Method in class org.hsqldb.jdbcDriver
Gets the driver's minor version number.
getMoreResults() - Method in class org.hsqldb.jdbc.jdbcStatement
Moves to this Statement object's next result, returns true if it is a ResultSet object, and implicitly closes any current ResultSet object(s) obtained with the method getResultSet.
getMoreResults(int) - Method in class org.hsqldb.jdbc.jdbcStatement
Moves to this Statement object's next result, deals with any current ResultSet object(s) according to the instructions specified by the given flag, and returns true if the next result is a ResultSet object.
getNumericFunctions() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a comma-separated list of math functions available with this database.
getObject(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated parameter as an Object in the Java programming language.
getObject(int, Map) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Returns an object representing the value of OUT parameter parameterIndex and uses map for the custom mapping of the parameter value.
getObject(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a parameter as an Object in the Java programming language.
getObject(String, Map) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Returns an object representing the value of OUT parameter parameterName and uses map for the custom mapping of the parameter value.
getObject(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Gets the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.
getObject(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Gets the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.
getObject(int, Map) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.
getObject(String, Map) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.
getObjectInstance(Object, Name, Context, Hashtable) - Method in class org.hsqldb.jdbc.jdbcDataSourceFactory
Creates a jdbcDatasource object using the location or reference information specified.
getOperationSpec(int) - Static method in class org.hsqldb.sample.TriggerSample
 
getParameterClassName(int) - Method in class org.hsqldb.jdbc.jdbcParameterMetaData
Retrieves the fully-qualified name of the Java class whose instances should be passed to the method PreparedStatement.setObject.
getParameterCount() - Method in class org.hsqldb.jdbc.jdbcParameterMetaData
Retrieves the number of parameters in the PreparedStatement object for which this ParameterMetaData object provides information.
getParameterMetaData() - Method in class org.hsqldb.jdbc.jdbcPreparedStatement
Retrieves the number, types and properties of this PreparedStatement object's parameters.
getParameterMode(int) - Method in class org.hsqldb.jdbc.jdbcParameterMetaData
Retrieves the designated parameter's mode.
getParameterType(int) - Method in class org.hsqldb.jdbc.jdbcParameterMetaData
Retrieves the designated parameter's SQL type.
getParameterTypeName(int) - Method in class org.hsqldb.jdbc.jdbcParameterMetaData
Retrieves the designated parameter's database-specific type name.
getPort() - Method in class org.hsqldb.Server
Retrieves this server's host port.
getPrecision(int) - Method in class org.hsqldb.jdbc.jdbcParameterMetaData
Retrieves the designated parameter's number of decimal digits.
getPrecision(int) - Method in class org.hsqldb.jdbc.jdbcResultSetMetaData
Get the designated column's number of decimal digits.
getPrimaryKeys(String, String, String) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a description of the given table's primary key columns.
getProcedureColumns(String, String, String, String) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a description of the given catalog's stored procedure parameter and result columns.
getProcedureTerm() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the database vendor's preferred term for "procedure".
getProcedures(String, String, String) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a description of the stored procedures available in the given catalog.
getProductName() - Method in class org.hsqldb.Server
Retrieves this server's product name.
getProductName() - Method in class org.hsqldb.WebServer
Retrieves this server's product name.
getProductVersion() - Method in class org.hsqldb.Server
Retrieves the server's product version, as a String.
getPropertyInfo(String, Properties) - Method in class org.hsqldb.jdbcDriver
Gets information about the possible properties for this driver.
getProtocol() - Method in class org.hsqldb.Server
Retrieves a string respresentaion of the network protocol this server offers, typically one of 'HTTP', HTTPS', 'HSQL' or 'HSQLS'.
getProtocol() - Method in class org.hsqldb.WebServer
Retrieves a string respresentaion of the network protocol this server offers, typically one of 'HTTP', HTTPS', 'HSQL' or 'HSQLS'.
getQueryTimeout() - Method in class org.hsqldb.jdbc.jdbcStatement
Retrieves the number of seconds the driver will wait for a Statement object to execute.
getQueueSpec(int) - Static method in class org.hsqldb.sample.TriggerSample
 
getRef(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC REF(<structured-type>) parameter as a Ref object in the Java programming language.
getRef(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC REF(<structured-type>) parameter as a Ref object in the Java programming language.
getRef(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a Ref object in the Java programming language.
getRef(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a Ref object in the Java programming language.
getReference() - Method in class org.hsqldb.jdbc.jdbcDataSource
 
getResultSet() - Method in class org.hsqldb.jdbc.jdbcStatement
Retrieves the current result as a ResultSet object.
getResultSetConcurrency() - Method in class org.hsqldb.jdbc.jdbcStatement
Retrieves the result set concurrency for ResultSet objects generated by this Statement object.
getResultSetHoldability() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the default holdability of this ResultSet object.
getResultSetHoldability() - Method in class org.hsqldb.jdbc.jdbcStatement
Retrieves the result set holdability for ResultSet objects generated by this Statement object.
getResultSetType() - Method in class org.hsqldb.jdbc.jdbcStatement
Retrieves the result set type for ResultSet objects generated by this Statement object.
getRow() - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the current row number.
getSQLKeywords() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a comma-separated list of all of this database's SQL keywords that are NOT also SQL92 keywords.
getSQLStateType() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Indicates whether the SQLSTATEs returned by SQLException.getSQLState is X/Open (now known as Open Group) SQL CLI or SQL99.
getSavepointId() - Method in class org.hsqldb.jdbc.jdbcSavepoint
Retrieves the generated ID for the savepoint that this Savepoint object represents.
getSavepointName() - Method in class org.hsqldb.jdbc.jdbcSavepoint
Retrieves the name of the savepoint that this Savepoint object represents.
getScale(int) - Method in class org.hsqldb.jdbc.jdbcParameterMetaData
Retrieves the designated parameter's number of digits to right of the decimal point.
getScale(int) - Method in class org.hsqldb.jdbc.jdbcResultSetMetaData
Gets the designated column's number of digits to right of the decimal point.
getSchemaName(int) - Method in class org.hsqldb.jdbc.jdbcResultSetMetaData
Get the designated column's table's schema.
getSchemaTerm() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the database vendor's preferred term for "schema".
getSchemas() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the schema names available in this database.
getSearchStringEscape() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the string that can be used to escape wildcard characters.
getServerError() - Method in class org.hsqldb.Server
Retrieves a Throwable indicating the last server error, if any.
getServerId() - Method in class org.hsqldb.Server
Retrieves a String identifying this Server object.
getShort(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC SMALLINT parameter as a short in the Java programming language.
getShort(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC SMALLINT parameter as a short in the Java programming language.
getShort(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.
getShort(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.
getState() - Method in class org.hsqldb.Server
Retrieves current state of this server in numerically coded form.
getStateDescriptor() - Method in class org.hsqldb.Server
Retrieves a character sequence describing this server's current state, including the message of the last exception, if there is one and it is still in context.
getStatement() - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the Statement object that produced this ResultSet object.
getString(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC CHAR, VARCHAR, or LONGVARCHAR parameter as a String in the Java programming language.
getString(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC CHAR, VARCHAR, or LONGVARCHAR parameter as a String in the Java programming language.
getString(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
getString(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
getStringFunctions() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a comma-separated list of string functions available with this database.
getSubString(long, int) - Method in class org.hsqldb.jdbc.jdbcClob
Retrieves a copy of the specified substring in the CLOB value designated by this Clob object.
getSuperTables(String, String, String) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a description of the table hierarchies defined in a particular schema in this database.
getSuperTypes(String, String, String) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a description of the user-defined type (UDT) hierarchies defined in a particular schema in this database.
getSystemFunctions() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a comma-separated list of system functions available with this database.
getTableName(int) - Method in class org.hsqldb.jdbc.jdbcResultSetMetaData
Gets the designated column's table name.
getTablePrivileges(String, String, String) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a description of the access rights for each table available in a catalog.
getTableTypes() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the table types available in this database.
getTables(String, String, String, String[]) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a description of the tables available in the given catalog.
getTime(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC TIME parameter as a java.sql.Time object.
getTime(int, Calendar) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC TIME parameter as a java.sql.Time object, using the given Calendar object to construct the time.
getTime(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC TIME parameter as a java.sql.Time object.
getTime(String, Calendar) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC TIME parameter as a java.sql.Time object, using the given Calendar object to construct the time.
getTime(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Time object in the Java programming language.
getTime(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Time object in the Java programming language.
getTime(int, Calendar) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Time object in the Java programming language.
getTime(String, Calendar) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Time object in the Java programming language.
getTimeDateFunctions() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a comma-separated list of the time and date functions available with this database.
getTimestamp(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC TIMESTAMP parameter as a java.sql.Timestamp object.
getTimestamp(int, Calendar) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC TIMESTAMP parameter as a java.sql.Timestamp object, using the given Calendar object to construct the Timestamp object.
getTimestamp(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC TIMESTAMP parameter as a java.sql.Timestamp object.
getTimestamp(String, Calendar) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC TIMESTAMP parameter as a java.sql.Timestamp object, using the given Calendar object to construct the Timestamp object.
getTimestamp(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Timestamp object in the Java programming language.
getTimestamp(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Timestamp object.
getTimestamp(int, Calendar) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Timestamp object in the Java programming anguage.
getTimestamp(String, Calendar) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Timestamp object in the Java programming language.
getTransactionIsolation() - Method in class org.hsqldb.jdbc.jdbcConnection
Retrieves this Connection object's current transaction isolation level.
getTriggerDDL(String, int, String, int, String) - Static method in class org.hsqldb.sample.TriggerSample
 
getTriggerDescriptor(String, int, String) - Static method in class org.hsqldb.sample.TriggerSample
 
getType() - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the type of this ResultSet object.
getTypeInfo() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a description of all the standard SQL types supported by this database.
getTypeMap() - Method in class org.hsqldb.jdbc.jdbcConnection
Gets the type map object associated with this connection.
getUDTs(String, String, String, int[]) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a description of the user-defined types (UDTs) defined in a particular schema.
getURL(int) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of the designated JDBC DATALINK parameter as a java.net.URL object.
getURL(String) - Method in class org.hsqldb.jdbc.jdbcCallableStatement
Retrieves the value of a JDBC DATALINK parameter as a java.net.URL object.
getURL() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the URL for this DBMS.
getURL(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.net.URL object in the Java programming language.
getURL(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.net.URL object in the Java programming language.
getUnicodeStream(int) - Method in class org.hsqldb.jdbc.jdbcResultSet
Deprecated. use getCharacterStream in place of getUnicodeStream
getUnicodeStream(String) - Method in class org.hsqldb.jdbc.jdbcResultSet
Deprecated. use getCharacterStream instead
getUpdateCount() - Method in class org.hsqldb.jdbc.jdbcStatement
Retrieves the current result as an update count; if the result is a ResultSet object or there are no more results, -1 is returned.
getUser() - Method in class org.hsqldb.jdbc.jdbcDataSource
Retrieves the user ID for the connection.
getUserName() - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves the user name as known to this database.
getVersionColumns(String, String, String) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves a description of a table's columns that are automatically updated when any value in a row is updated.
getWarnings() - Method in class org.hsqldb.jdbc.jdbcConnection
Retrieves the first warning reported by calls on this Connection object.
getWarnings() - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves the first warning reported by calls on this ResultSet object.
getWarnings() - Method in class org.hsqldb.jdbc.jdbcStatement
Retrieves the first warning reported by calls on this Statement object.
getWebRoot() - Method in class org.hsqldb.Server
Retrieves the root context (directory) from which web content is served.
getWebRoot() - Method in class org.hsqldb.WebServer
Retrieves the root context (directory) from which web content is served.
getWhenSpec(int) - Static method in class org.hsqldb.sample.TriggerSample
 

H

HOLD_CURSORS_OVER_COMMIT - Static variable in class org.hsqldb.jdbc.jdbcResultSet
Copy of java.sql.ResultSet constant, for JDK 1.1 clients.
handleConnection(Socket) - Method in class org.hsqldb.Server
Assigns the specified socket to a new conection handler and starts the handler in a new Thread.

I

INPUTERR_EXITVAL - Static variable in class org.hsqldb.util.SqlTool
 
INSERT_AFTER - Static variable in interface org.hsqldb.Trigger
 
INSERT_AFTER_ROW - Static variable in interface org.hsqldb.Trigger
 
INSERT_BEFORE - Static variable in interface org.hsqldb.Trigger
 
INSERT_BEFORE_ROW - Static variable in interface org.hsqldb.Trigger
 
IOERR_EXITVAL - Static variable in class org.hsqldb.util.SqlTool
 
insertRow() - Method in class org.hsqldb.jdbc.jdbcResultSet
Inserts the contents of the insert row into this ResultSet object and into the database.
insertsAreDetected(int) - Method in class org.hsqldb.jdbc.jdbcDatabaseMetaData
Retrieves whether or not a visible row insert can be detected by calling the method ResultSet.rowInserted.
invalidArgument() - Static method in class org.hsqldb.jdbc.Util
 
invalidArgument(String) - Static method in class org.hsqldb.jdbc.Util
 
isAfterLast() - Method in class org.hsqldb.jdbc.jdbcResultSet
Retrieves whether the cursor is after the last row in this ResultSet object.
isAutoIncrement - Variable in class org.hsqldb.jdbc.jdbcColumnMetaData
Whether the value of the column are automatically numbered.
isAutoIncrement(int) - Method in class org.hsqldb.jdbc.jdbcResultSetMetaData
Indicates whether the designated column is automatically numbered, thus read-only.
isBeforeFirst()<