Home page  
Help >
: Index
Version 7.11
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 com.wham.jdbc.ResultSet
JDBC 2.0
acceptsURL(String) - Method in class com.wham.jdbc.Driver
Returns true if the driver thinks that it can open a connection to the given URL.
addBatch() - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Adds a set of parameters to the batch.
addBatch() - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Adds a set of parameters to the batch.
addBatch(String) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Adds a SQL command to the current batch of commmands for the statement.
addBatch(String) - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Adds a SQL command to the current batch of commmands for the statement.
addBatch(String) - Method in class com.wham.jdbc.Statement
JDBC 2.0 Adds a SQL command to the current batch of commmands for the statement.
afterLast() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0
alloc_stmt() - Method in class com.wham.jdbc.Connection
Insert the method's description here.
allProceduresAreCallable() - Method in class com.wham.jdbc.DatabaseMetaData
Can all the procedures returned by getProcedures be called by the current user?
allTablesAreSelectable() - Method in class com.wham.jdbc.DatabaseMetaData
Can all the tables returned by getTable be SELECTed by the current user?

B

beforeFirst() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0

C

CallableStatement - class com.wham.jdbc.CallableStatement.
The class used to execute SQL stored procedures.
CallableStatement() - Constructor for class com.wham.jdbc.CallableStatement
CallableStatement constructor comment.
cancel() - Method in class com.wham.jdbc.CallableStatement
Cancels this Statement object if both the DBMS and driver support aborting an SQL statement.
cancel() - Method in class com.wham.jdbc.PreparedStatement
Cancels this Statement object if both the DBMS and driver support aborting an SQL statement.
cancel() - Method in class com.wham.jdbc.Statement
Cancels this Statement object if both the DBMS and driver support aborting an SQL statement.
cancelRowUpdates() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Cancels the updates made to a row.
clearBatch() - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Makes the set of commands in the current batch empty.
clearBatch() - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Makes the set of commands in the current batch empty.
clearBatch() - Method in class com.wham.jdbc.Statement
JDBC 2.0 Makes the set of commands in the current batch empty.
clearParameters() - Method in class com.wham.jdbc.CallableStatement
Clears the current parameter values immediately.
clearParameters() - Method in class com.wham.jdbc.PreparedStatement
Clears the current parameter values immediately.
clearWarnings() - Method in class com.wham.jdbc.ResultSet
After this call getWarnings returns null until a new warning is reported for this ResultSet.
clearWarnings() - Method in class com.wham.jdbc.CallableStatement
Clears all the warnings reported on this Statement object.
clearWarnings() - Method in class com.wham.jdbc.PreparedStatement
Clears all the warnings reported on this Statement object.
clearWarnings() - Method in class com.wham.jdbc.Connection
Clears all warnings reported for this Connection object.
clearWarnings() - Method in class com.wham.jdbc.Statement
Clears all the warnings reported on this Statement object.
close() - Method in class com.wham.jdbc.ResultSet
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 com.wham.jdbc.CallableStatement
Releases this Statement object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed.
close() - Method in class com.wham.jdbc.PreparedStatement
Releases this Statement object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed.
close() - Method in class com.wham.jdbc.Connection
Releases a Connection's database and JDBC resources immediately instead of waiting for them to be automatically released.
close() - Method in class com.wham.jdbc.Statement
Releases this Statement object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed.
com.wham.jdbc - package com.wham.jdbc
 
commit() - Method in class com.wham.jdbc.Connection
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 com.wham.jdbc.Driver
Attempts to make a database connection to the given URL.
Connection - class com.wham.jdbc.Connection.
A connection (session) with a specific database.
Connection() - Constructor for class com.wham.jdbc.Connection
Connection constructor comment.
createStatement() - Method in class com.wham.jdbc.Connection
Creates a Statement object for sending SQL statements to the database.
createStatement(int, int) - Method in class com.wham.jdbc.Connection
JDBC 2.0 Creates a Statement object that will generate ResultSet objects with the given type and concurrency.

D

database(Properties) - Method in class com.wham.jdbc.Driver
 
DatabaseMetaData - class com.wham.jdbc.DatabaseMetaData.
Comprehensive information about the database as a whole.
DatabaseMetaData(Connection, String) - Constructor for class com.wham.jdbc.DatabaseMetaData
DatabaseMetaData constructor comment.
dataDefinitionCausesTransactionCommit() - Method in class com.wham.jdbc.DatabaseMetaData
Does a data definition statement within a transaction force the transaction to commit?
dataDefinitionIgnoredInTransactions() - Method in class com.wham.jdbc.DatabaseMetaData
Is a data definition statement within a transaction ignored?
debug - Static variable in class com.wham.jdbc.Driver
 
Debug - class com.wham.jdbc.Debug.
The Debug class allows debug messages on a per-class basis.
Debug() - Constructor for class com.wham.jdbc.Debug
 
deleteRow() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Deletes the current row from the result set and the underlying database.
deletesAreDetected(int) - Method in class com.wham.jdbc.DatabaseMetaData
JDBC 2.0 Indicates whether or not a visible row delete can be detected by calling ResultSet.rowDeleted().
doesMaxRowSizeIncludeBlobs() - Method in class com.wham.jdbc.DatabaseMetaData
Did getMaxRowSize() include LONGVARCHAR and LONGVARBINARY blobs?
Driver - class com.wham.jdbc.Driver.
This class implements java.sql.Driver interface.
Driver() - Constructor for class com.wham.jdbc.Driver
Driver constructor comment.

E

execute() - Method in class com.wham.jdbc.CallableStatement
Executes any kind of SQL statement.
execute() - Method in class com.wham.jdbc.PreparedStatement
Executes any kind of SQL statement.
execute(String) - Method in class com.wham.jdbc.CallableStatement
Executes a SQL statement that may return multiple results.
execute(String) - Method in class com.wham.jdbc.PreparedStatement
Executes a SQL statement that may return multiple results.
execute(String) - Method in class com.wham.jdbc.Statement
Executes a SQL statement that may return multiple results.
executeBatch() - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Submits a batch of commands to the database for execution.
executeBatch() - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Submits a batch of commands to the database for execution.
executeBatch() - Method in class com.wham.jdbc.Statement
JDBC 2.0 Submits a batch of commands to the database for execution.
executeQuery() - Method in class com.wham.jdbc.CallableStatement
Executes the SQL query in this PreparedStatement object and returns the result set generated by the query.
executeQuery() - Method in class com.wham.jdbc.PreparedStatement
Executes the SQL query in this PreparedStatement object and returns the result set generated by the query.
executeQuery(long, String) - Method in class com.wham.jdbc.Connection
Insert the method's description here.
executeQuery(String) - Method in class com.wham.jdbc.CallableStatement
Executes a SQL statement that returns a single ResultSet.
executeQuery(String) - Method in class com.wham.jdbc.PreparedStatement
Executes a SQL statement that returns a single ResultSet.
executeQuery(String) - Method in class com.wham.jdbc.Statement
Executes a SQL statement that returns a single ResultSet.
executeUpdate() - Method in class com.wham.jdbc.CallableStatement
Executes the SQL INSERT, UPDATE or DELETE statement in this PreparedStatement object.
executeUpdate() - Method in class com.wham.jdbc.PreparedStatement
Executes the SQL INSERT, UPDATE or DELETE statement in this PreparedStatement object.
executeUpdate(long, String) - Method in class com.wham.jdbc.Connection
Insert the method's description here.
executeUpdate(String) - Method in class com.wham.jdbc.CallableStatement
Executes an SQL INSERT, UPDATE or DELETE statement.
executeUpdate(String) - Method in class com.wham.jdbc.PreparedStatement
Executes an SQL INSERT, UPDATE or DELETE statement.
executeUpdate(String) - Method in class com.wham.jdbc.Statement
Executes an SQL INSERT, UPDATE or DELETE statement.

F

findColumn(String) - Method in class com.wham.jdbc.ResultSet
Maps the given Resultset column name to its ResultSet column index.
first() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0
free_stmt(long) - Method in class com.wham.jdbc.Connection
Insert the method's description here.

G

get_rows(long, TBDRV_COLUMN_SPEC[], int, long) - Method in class com.wham.jdbc.Connection
Insert the method's description here.
getArray(int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Gets an SQL ARRAY value from the current row of this ResultSet object.
getArray(int) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Gets the value of a JDBC ARRAY parameter as an Array object in the Java programming language.
getArray(String) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Gets an SQL ARRAY value in the current row of this ResultSet object.
getAsciiStream(int) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a stream of ASCII characters.
getAsciiStream(String) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a stream of ASCII characters.
getAutoCommit() - Method in class com.wham.jdbc.Connection
Gets the current auto-commit state.
getBestRowIdentifier(String, String, String, int, boolean) - Method in class com.wham.jdbc.DatabaseMetaData
Gets a description of a table's optimal set of columns that uniquely identifies a row.
getBigDecimal(int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Gets the value of a column in the current row as a java.math.BigDecimal object with full precision.
getBigDecimal(int) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Gets 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 com.wham.jdbc.ResultSet
Deprecated.  
getBigDecimal(int, int) - Method in class com.wham.jdbc.CallableStatement
Deprecated.  
getBigDecimal(String) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Gets the value of a column in the current row as a java.math.BigDecimal object with full precision.
getBigDecimal(String, int) - Method in class com.wham.jdbc.ResultSet
Deprecated.  
getBinaryStream(int) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a stream of uninterpreted bytes.
getBinaryStream(String) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a stream of uninterpreted bytes.
getBlob(int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Gets a BLOB value in the current row of this ResultSet object.
getBlob(int) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Gets the value of a JDBC BLOB parameter as a Blob object in the Java programming language.
getBlob(String) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Gets a BLOB value in the current row of this ResultSet object.
getBoolean(int) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java boolean.
getBoolean(int) - Method in class com.wham.jdbc.CallableStatement
Gets the value of a JDBC BIT parameter as a boolean in the Java programming language.
getBoolean(String) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java boolean.
getByte(int) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java byte.
getByte(int) - Method in class com.wham.jdbc.CallableStatement
Gets the value of a JDBC TINYINT parameter as a byte in the Java programming language.
getByte(String) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java byte.
getBytes(int) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java byte array.
getBytes(int) - Method in class com.wham.jdbc.CallableStatement
Gets the value of a JDBC BINARY or VARBINARY parameter as an array of byte vlaures in the Java programming language.
getBytes(String) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java byte array.
getCatalog() - Method in class com.wham.jdbc.Connection
Returns the Connection's current catalog name.
getCatalogName(int) - Method in class com.wham.jdbc.ResultSetMetaData
Gets a column's table's catalog name.
getCatalogs() - Method in class com.wham.jdbc.DatabaseMetaData
Gets the catalog names available in this database.
getCatalogSeparator() - Method in class com.wham.jdbc.DatabaseMetaData
What's the separator between catalog and table name?
getCatalogTerm() - Method in class com.wham.jdbc.DatabaseMetaData
What's the database vendor's preferred term for "catalog"?
getCharacterStream(int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0
getCharacterStream(String) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0
getClob(int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Gets a CLOB value in the current row of this ResultSet object.
getClob(int) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Gets the value of a JDBC CLOB parameter as a Clob object in the Java programming language.
getClob(String) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Gets a CLOB value in the current row of this ResultSet object.
getColumnClassName(int) - Method in class com.wham.jdbc.ResultSetMetaData
JDBC 2.0
getColumnCount() - Method in class com.wham.jdbc.ResultSetMetaData
Returns the number of columns in this ResultSet.
getColumnDisplaySize(int) - Method in class com.wham.jdbc.ResultSetMetaData
Indicates the column's normal max width in chars.
getColumnLabel(int) - Method in class com.wham.jdbc.ResultSetMetaData
Gets the suggested column title for use in printouts and displays.
getColumnName(int) - Method in class com.wham.jdbc.ResultSetMetaData
Gets a column's name.
getColumnPrivileges(String, String, String, String) - Method in class com.wham.jdbc.DatabaseMetaData
Gets a description of the access rights for a table's columns.
getColumns(String, String, String, String) - Method in class com.wham.jdbc.DatabaseMetaData
Gets a description of table columns available in the specified catalog.
getColumnType(int) - Method in class com.wham.jdbc.ResultSetMetaData
Retrieves a column's SQL type.
getColumnTypeName(int) - Method in class com.wham.jdbc.ResultSetMetaData
Retrieves a column's database-specific type name.
getColumnTypeNameFromOLEDBDataType(int) - Method in class com.wham.jdbc.ResultSetMetaData
Insert the method's description here.
getConcurrency() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Returns the concurrency mode of this result set.
getConnection() - Method in class com.wham.jdbc.DatabaseMetaData
JDBC 2.0 Retrieves the connection that produced this metadata object.
getConnection() - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Returns the Connection object that produced this Statement object.
getConnection() - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Returns the Connection object that produced this Statement object.
getConnection() - Method in class com.wham.jdbc.Statement
JDBC 2.0 Returns the Connection object that produced this Statement object.
getCrossReference(String, String, String, String, String, String) - Method in class com.wham.jdbc.DatabaseMetaData
Gets a description of the foreign key columns in the foreign key table that reference the primary key columns of the primary key table (describe how one table imports another's key.) This should normally return a single foreign key/primary key pair (most tables only import a foreign key from a table once.) They are ordered by FKTABLE_CAT, FKTABLE_SCHEM, FKTABLE_NAME, and KEY_SEQ.
getCursorName() - Method in class com.wham.jdbc.ResultSet
Gets the name of the SQL cursor used by this ResultSet.
getDatabaseProductName() - Method in class com.wham.jdbc.DatabaseMetaData
What's the name of this database product?
getDatabaseProductVersion() - Method in class com.wham.jdbc.DatabaseMetaData
What's the version of this database product?
getDate(int) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a java.sql.Date object.
getDate(int) - Method in class com.wham.jdbc.CallableStatement
Gets the value of a JDBC DATE parameter as a java.sql.Date object.
getDate(int, Calendar) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Gets the value of a column in the current row as a java.sql.Date object.
getDate(int, Calendar) - Method in class com.wham.jdbc.CallableStatement
Gets the value of a JDBC DATE parameter as a java.sql.Date object, using the given Calendar object to construct the date.
getDate(String) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a java.sql.Date object.
getDate(String, Calendar) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a java.sql.Date object.
getDefaultTransactionIsolation() - Method in class com.wham.jdbc.DatabaseMetaData
What's the database's default transaction isolation level? The values are defined in java.sql.Connection.
getDouble(int) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java double.
getDouble(int) - Method in class com.wham.jdbc.CallableStatement
Gets the value of a JDBC DOUBLE parameter as a double in the Java programming language.
getDouble(String) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java double.
getDriverMajorVersion() - Method in class com.wham.jdbc.DatabaseMetaData
What's this JDBC driver's major version number?
getDriverMinorVersion() - Method in class com.wham.jdbc.DatabaseMetaData
What's this JDBC driver's minor version number?
getDriverName() - Method in class com.wham.jdbc.DatabaseMetaData
What's the name of this JDBC driver?
getDriverVersion() - Method in class com.wham.jdbc.DatabaseMetaData
What's the version of this JDBC driver?
getExportedKeys(String, String, String) - Method in class com.wham.jdbc.DatabaseMetaData
Gets a description of the foreign key columns that reference a table's primary key columns (the foreign keys exported by a table).
getExtraNameCharacters() - Method in class com.wham.jdbc.DatabaseMetaData
Gets 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 com.wham.jdbc.ResultSet
JDBC 2.0 Returns the fetch direction for this result set.
getFetchDirection() - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Retrieves the direction for fetching rows from database tables that is the default for result sets generated from this Statement object.
getFetchDirection() - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Retrieves the direction for fetching rows from database tables that is the default for result sets generated from this Statement object.
getFetchDirection() - Method in class com.wham.jdbc.Statement
JDBC 2.0 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 com.wham.jdbc.ResultSet
JDBC 2.0 Returns the fetch size for this result set.
getFetchSize() - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Retrieves the number of result set rows that is the default fetch size for result sets generated from this Statement object.
getFetchSize() - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Retrieves the number of result set rows that is the default fetch size for result sets generated from this Statement object.
getFetchSize() - Method in class com.wham.jdbc.Statement
JDBC 2.0 Retrieves the number of result set rows that is the default fetch size for result sets generated from this Statement object.
getFloat(int) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java float.
getFloat(int) - Method in class com.wham.jdbc.CallableStatement
Gets the value of a JDBC FLOAT parameter as a float in the Java programming language.
getFloat(String) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java float.
getIdentifierQuoteString() - Method in class com.wham.jdbc.DatabaseMetaData
What's the string used to quote SQL identifiers? This returns a space " " if identifier quoting isn't supported.
getImportedKeys(String, String, String) - Method in class com.wham.jdbc.DatabaseMetaData
Gets 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 com.wham.jdbc.DatabaseMetaData
Gets a description of a table's indices and statistics.
getInt(int) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java int.
getInt(int) - Method in class com.wham.jdbc.CallableStatement
Gets the value of a JDBC INTEGER parameter as an int in the Java programming language.
getInt(String) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java int.
getLong(int) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java long.
getLong(int) - Method in class com.wham.jdbc.CallableStatement
Gets the value of a JDBC BIGINT parameter as a long in the Java programming language.
getLong(String) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java long.
getMajorVersion() - Method in class com.wham.jdbc.Driver
Gets the driver's major version number.
getMaxBinaryLiteralLength() - Method in class com.wham.jdbc.DatabaseMetaData
How many hex characters can you have in an inline binary literal?
getMaxCatalogNameLength() - Method in class com.wham.jdbc.DatabaseMetaData
What's the maximum length of a catalog name?
getMaxCharLiteralLength() - Method in class com.wham.jdbc.DatabaseMetaData
What's the max length for a character literal?
getMaxColumnNameLength() - Method in class com.wham.jdbc.DatabaseMetaData
What's the limit on column name length?
getMaxColumnsInGroupBy() - Method in class com.wham.jdbc.DatabaseMetaData
What's the maximum number of columns in a "GROUP BY" clause?
getMaxColumnsInIndex() - Method in class com.wham.jdbc.DatabaseMetaData
What's the maximum number of columns allowed in an index?
getMaxColumnsInOrderBy() - Method in class com.wham.jdbc.DatabaseMetaData
What's the maximum number of columns in an "ORDER BY" clause?
getMaxColumnsInSelect() - Method in class com.wham.jdbc.DatabaseMetaData
What's the maximum number of columns in a "SELECT" list?
getMaxColumnsInTable() - Method in class com.wham.jdbc.DatabaseMetaData
What's the maximum number of columns in a table?
getMaxConnections() - Method in class com.wham.jdbc.DatabaseMetaData
How many active connections can we have at a time to this database?
getMaxCursorNameLength() - Method in class com.wham.jdbc.DatabaseMetaData
What's the maximum cursor name length?
getMaxFieldSize() - Method in class com.wham.jdbc.CallableStatement
Returns the maximum number of bytes allowed for any column value.
getMaxFieldSize() - Method in class com.wham.jdbc.PreparedStatement
Returns the maximum number of bytes allowed for any column value.
getMaxFieldSize() - Method in class com.wham.jdbc.Statement
Returns the maximum number of bytes allowed for any column value.
getMaxIndexLength() - Method in class com.wham.jdbc.DatabaseMetaData
What's the maximum length of an index (in bytes)?
getMaxProcedureNameLength() - Method in class com.wham.jdbc.DatabaseMetaData
What's the maximum length of a procedure name?
getMaxRows() - Method in class com.wham.jdbc.CallableStatement
Retrieves the maximum number of rows that a ResultSet can contain.
getMaxRows() - Method in class com.wham.jdbc.PreparedStatement
Retrieves the maximum number of rows that a ResultSet can contain.
getMaxRows() - Method in class com.wham.jdbc.Statement
Retrieves the maximum number of rows that a ResultSet can contain.
getMaxRowSize() - Method in class com.wham.jdbc.DatabaseMetaData
What's the maximum length of a single row?
getMaxSchemaNameLength() - Method in class com.wham.jdbc.DatabaseMetaData
What's the maximum length allowed for a schema name?
getMaxStatementLength() - Method in class com.wham.jdbc.DatabaseMetaData
What's the maximum length of a SQL statement?
getMaxStatements() - Method in class com.wham.jdbc.DatabaseMetaData
How many active statements can we have open at one time to this database?
getMaxTableNameLength() - Method in class com.wham.jdbc.DatabaseMetaData
What's the maximum length of a table name?
getMaxTablesInSelect() - Method in class com.wham.jdbc.DatabaseMetaData
What's the maximum number of tables in a SELECT statement?
getMaxUserNameLength() - Method in class com.wham.jdbc.DatabaseMetaData
What's the maximum length of a user name?
getMetaData() - Method in class com.wham.jdbc.ResultSet
Retrieves the number, types and properties of a ResultSet's columns.
getMetaData() - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Gets the number, types and properties of a ResultSet's columns.
getMetaData() - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Gets the number, types and properties of a ResultSet's columns.
getMetaData() - Method in class com.wham.jdbc.Connection
Gets the metadata regarding this connection's database.
getMinorVersion() - Method in class com.wham.jdbc.Driver
Gets the driver's minor version number.
getMoreResults() - Method in class com.wham.jdbc.CallableStatement
Moves to a Statement's next result.
getMoreResults() - Method in class com.wham.jdbc.PreparedStatement
Moves to a Statement's next result.
getMoreResults() - Method in class com.wham.jdbc.Statement
Moves to a Statement's next result.
getNumericFunctions() - Method in class com.wham.jdbc.DatabaseMetaData
Gets a comma-separated list of math functions.
getObject(int) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java object.
getObject(int) - Method in class com.wham.jdbc.CallableStatement
Gets the value of a parameter as an object in the Java programming language.
getObject(int, Map) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Returns the value of a column in the current row as a Java object.
getObject(int, Map) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Returns an object representing the value of OUT parameter i and uses map for the custom mapping of the parameter value.
getObject(String) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java object.
getObject(String, Map) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Returns the value in the specified column as a Java object.
getPrecision(int) - Method in class com.wham.jdbc.ResultSetMetaData
Gets a column's number of decimal digits.
getPrimaryKeys(String, String, String) - Method in class com.wham.jdbc.DatabaseMetaData
Gets a description of a table's primary key columns.
getProcedureColumns(String, String, String, String) - Method in class com.wham.jdbc.DatabaseMetaData
Gets a description of a catalog's stored procedure parameters and result columns.
getProcedures(String, String, String) - Method in class com.wham.jdbc.DatabaseMetaData
Gets a description of the stored procedures available in a catalog.
getProcedureTerm() - Method in class com.wham.jdbc.DatabaseMetaData
What's the database vendor's preferred term for "procedure"?
getPropertyInfo(String, Properties) - Method in class com.wham.jdbc.Driver
Gets information about the possible properties for this driver.
getQueryTimeout() - Method in class com.wham.jdbc.CallableStatement
Retrieves the number of seconds the driver will wait for a Statement to execute.
getQueryTimeout() - Method in class com.wham.jdbc.PreparedStatement
Retrieves the number of seconds the driver will wait for a Statement to execute.
getQueryTimeout() - Method in class com.wham.jdbc.Statement
Retrieves the number of seconds the driver will wait for a Statement to execute.
getRef(int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Gets a REF(<structured-type>) column value from the current row.
getRef(int) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Gets the value of a JDBC REF(<structured-type>) parameter as a Ref object in the Java programming language.
getRef(String) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Gets a REF(<structured-type>) column value from the current row.
getResultSet() - Method in class com.wham.jdbc.CallableStatement
Returns the current result as a ResultSet object.
getResultSet() - Method in class com.wham.jdbc.PreparedStatement
Returns the current result as a ResultSet object.
getResultSet() - Method in class com.wham.jdbc.Statement
Returns the current result as a ResultSet object.
getResultSetConcurrency() - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Retrieves the result set concurrency.
getResultSetConcurrency() - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Retrieves the result set concurrency.
getResultSetConcurrency() - Method in class com.wham.jdbc.Statement
JDBC 2.0 Retrieves the result set concurrency.
getResultSetType() - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Determine the result set type.
getResultSetType() - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Determine the result set type.
getResultSetType() - Method in class com.wham.jdbc.Statement
JDBC 2.0 Determine the result set type.
getRow() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0
getRowsAffected() - Method in class com.wham.jdbc.ResultSet
Insert the method's description here.
getScale(int) - Method in class com.wham.jdbc.ResultSetMetaData
Gets a column's number of digits to right of the decimal point.
getSchemaName(int) - Method in class com.wham.jdbc.ResultSetMetaData
Gets a column's table's schema.
getSchemas() - Method in class com.wham.jdbc.DatabaseMetaData
Gets the schema names available in this database.
getSchemaTerm() - Method in class com.wham.jdbc.DatabaseMetaData
What's the database vendor's preferred term for "schema"?
getSearchStringEscape() - Method in class com.wham.jdbc.DatabaseMetaData
Gets the string that can be used to escape wildcard characters.
getShort(int) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java short.
getShort(int) - Method in class com.wham.jdbc.CallableStatement
Gets the value of a JDBC SMALLINT parameter as a short in the Java programming language.
getShort(String) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java short.
getSQLKeywords() - Method in class com.wham.jdbc.DatabaseMetaData
Gets a comma-separated list of all a database's SQL keywords that are NOT also SQL92 keywords.
getSQLTypeFromOLEDBDataType(int) - Method in class com.wham.jdbc.ResultSetMetaData
Insert the method's description here.
getStatement() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Returns the Statement that produced this ResultSet object.
getString(int) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java String.
getString(int) - Method in class com.wham.jdbc.CallableStatement
Retrieves the value of a JDBC CHAR, VARCHAR, or LONGVARCHAR parameter as a String in the Java programming language.
getString(String) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a Java String.
getStringFunctions() - Method in class com.wham.jdbc.DatabaseMetaData
Gets a comma-separated list of string functions.
getSystemFunctions() - Method in class com.wham.jdbc.DatabaseMetaData
Gets a comma-separated list of system functions.
getTableName(int) - Method in class com.wham.jdbc.ResultSetMetaData
Gets a column's table name.
getTablePrivileges(String, String, String) - Method in class com.wham.jdbc.DatabaseMetaData
Gets a description of the access rights for each table available in a catalog.
getTables() - Method in class com.wham.jdbc.Connection
Insert the method's description here.
getTables(String, String, String, String[]) - Method in class com.wham.jdbc.DatabaseMetaData
Gets a description of tables available in a catalog.
getTableTypes() - Method in class com.wham.jdbc.DatabaseMetaData
Gets the table types available in this database.
getTime(int) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a java.sql.Time object.
getTime(int) - Method in class com.wham.jdbc.CallableStatement
Get the value of a JDBC TIME parameter as a java.sql.Time object.
getTime(int, Calendar) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a java.sql.Time object.
getTime(int, Calendar) - Method in class com.wham.jdbc.CallableStatement
Gets the value of a JDBC TIME parameter as a java.sql.Time object, using the given Calendar object to construct the time.
getTime(String) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a java.sql.Time object.
getTime(String, Calendar) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a java.sql.Time object.
getTimeDateFunctions() - Method in class com.wham.jdbc.DatabaseMetaData
Gets a comma-separated list of time and date functions.
getTimestamp(int) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a java.sql.Timestamp object.
getTimestamp(int) - Method in class com.wham.jdbc.CallableStatement
Gets the value of a JDBC TIMESTAMP parameter as a java.sql.Timestamp object.
getTimestamp(int, Calendar) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a java.sql.Timestamp object.
getTimestamp(int, Calendar) - Method in class com.wham.jdbc.CallableStatement
Gets the value of a JDBC TIMESTAMP parameter as a java.sql.Timestamp object, using the given Calendar object to construct the Timestamp object.
getTimestamp(String) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a java.sql.Timestamp object.
getTimestamp(String, Calendar) - Method in class com.wham.jdbc.ResultSet
Gets the value of a column in the current row as a java.sql.Timestamp object.
getTransactionIsolation() - Method in class com.wham.jdbc.Connection
Gets this Connection's current transaction isolation level.
getType() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Returns the type of this result set.
getTypeInfo() - Method in class com.wham.jdbc.DatabaseMetaData
Gets a description of all the standard SQL types supported by this database.
getTypeMap() - Method in class com.wham.jdbc.Connection
JDBC 2.0 Gets the type map object associated with this connection.
getUDTs(String, String, String, int[]) - Method in class com.wham.jdbc.DatabaseMetaData
JDBC 2.0 Gets a description of the user-defined types defined in a particular schema.
getUnicodeStream(int) - Method in class com.wham.jdbc.ResultSet
Deprecated.  
getUnicodeStream(String) - Method in class com.wham.jdbc.ResultSet
Deprecated.  
getUpdateCount() - Method in class com.wham.jdbc.CallableStatement
Returns the current result as an update count; if the result is a ResultSet or there are no more results, -1 is returned.
getUpdateCount() - Method in class com.wham.jdbc.PreparedStatement
Returns the current result as an update count; if the result is a ResultSet or there are no more results, -1 is returned.
getUpdateCount() - Method in class com.wham.jdbc.Statement
Returns the current result as an update count; if the result is a ResultSet or there are no more results, -1 is returned.
getURL() - Method in class com.wham.jdbc.DatabaseMetaData
What's the url for this database?
getUserName() - Method in class com.wham.jdbc.DatabaseMetaData
What's our user name as known to the database?
getVersionColumns(String, String, String) - Method in class com.wham.jdbc.DatabaseMetaData
Gets a description of a table's columns that are automatically updated when any value in a row is updated.
getWarnings() - Method in class com.wham.jdbc.ResultSet
The first warning reported by calls on this ResultSet is returned.
getWarnings() - Method in class com.wham.jdbc.CallableStatement
Retrieves the first warning reported by calls on this Statement.
getWarnings() - Method in class com.wham.jdbc.PreparedStatement
Retrieves the first warning reported by calls on this Statement.
getWarnings() - Method in class com.wham.jdbc.Connection
Returns the first warning reported by calls on this Connection.
getWarnings() - Method in class com.wham.jdbc.Statement
Retrieves the first warning reported by calls on this Statement.

H

host(Properties) - Method in class com.wham.jdbc.Driver
Returns the hostname property

I

insertRow() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Inserts the contents of the insert row into the result set and the database.
insertsAreDetected(int) - Method in class com.wham.jdbc.DatabaseMetaData
JDBC 2.0 Indicates whether or not a visible row insert can be detected by calling ResultSet.rowInserted().
isAfterLast() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0
isAutoIncrement(int) - Method in class com.wham.jdbc.ResultSetMetaData
Indicates whether the column is automatically numbered, thus read-only.
isBeforeFirst() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0
isCaseSensitive(int) - Method in class com.wham.jdbc.ResultSetMetaData
Indicates whether a column's case matters.
isCatalogAtStart() - Method in class com.wham.jdbc.DatabaseMetaData
Does a catalog appear at the start of a qualified table name? (Otherwise it appears at the end)
isClosed() - Method in class com.wham.jdbc.Connection
Tests to see if a Connection is closed.
isCurrency(int) - Method in class com.wham.jdbc.ResultSetMetaData
Indicates whether the column is a cash value.
isDefinitelyWritable(int) - Method in class com.wham.jdbc.ResultSetMetaData
Indicates whether a write on the column will definitely succeed.
isFirst() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0
isLast() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0
isNullable(int) - Method in class com.wham.jdbc.ResultSetMetaData
Indicates the nullability of values in the designated column.
isReadOnly() - Method in class com.wham.jdbc.DatabaseMetaData
Is the database in read-only mode?
isReadOnly() - Method in class com.wham.jdbc.Connection
Tests to see if the connection is in read-only mode.
isReadOnly(int) - Method in class com.wham.jdbc.ResultSetMetaData
Indicates whether a column is definitely not writable.
isSearchable(int) - Method in class com.wham.jdbc.ResultSetMetaData
Indicates whether the column can be used in a where clause.
isSigned(int) - Method in class com.wham.jdbc.ResultSetMetaData
Indicates whether values in the column are signed numbers.
isWritable(int) - Method in class com.wham.jdbc.ResultSetMetaData
Indicates whether it is possible for a write on the column to succeed.

J

jdbcCompliant() - Method in class com.wham.jdbc.Driver
Reports whether this driver is a genuine JDBC COMPLIANTTM driver.

L

last() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0

M

methodCall(Object, String, Object[]) - Static method in class com.wham.jdbc.Debug
Trace a method call.
moveToCurrentRow() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Moves the cursor to the remembered cursor position, usually the current row.
moveToInsertRow() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Moves the cursor to the insert row.
msg(Object, String) - Static method in class com.wham.jdbc.Debug
Log a message.

N

nativeSQL(String) - Method in class com.wham.jdbc.Connection
Converts the given SQL statement into the system's native SQL grammar.
next() - Method in class com.wham.jdbc.ResultSet
Moves the cursor down one row from its current position.
NotImplemented - exception com.wham.jdbc.NotImplemented.
Insert the type's description here.
NotImplemented() - Constructor for class com.wham.jdbc.NotImplemented
NotImplement constructor comment.
NotImplemented(String) - Constructor for class com.wham.jdbc.NotImplemented
NotImplement constructor comment.
NotImplemented(String, String) - Constructor for class com.wham.jdbc.NotImplemented
NotImplement constructor comment.
NotImplemented(String, String, int) - Constructor for class com.wham.jdbc.NotImplemented
NotImplement constructor comment.
nullPlusNonNullIsNull() - Method in class com.wham.jdbc.DatabaseMetaData
Are concatenations between NULL and non-NULL values NULL? A JDBC CompliantTM driver always returns true.
nullsAreSortedAtEnd() - Method in class com.wham.jdbc.DatabaseMetaData
Are NULL values sorted at the end regardless of sort order?
nullsAreSortedAtStart() - Method in class com.wham.jdbc.DatabaseMetaData
Are NULL values sorted at the start regardless of sort order?
nullsAreSortedHigh() - Method in class com.wham.jdbc.DatabaseMetaData
Are NULL values sorted high?
nullsAreSortedLow() - Method in class com.wham.jdbc.DatabaseMetaData
Are NULL values sorted low?

O

othersDeletesAreVisible(int) - Method in class com.wham.jdbc.DatabaseMetaData
JDBC 2.0 Indicates whether deletes made by others are visible.
othersInsertsAreVisible(int) - Method in class com.wham.jdbc.DatabaseMetaData
JDBC 2.0 Indicates whether inserts made by others are visible.
othersUpdatesAreVisible(int) - Method in class com.wham.jdbc.DatabaseMetaData
JDBC 2.0 Indicates whether updates made by others are visible.
ownDeletesAreVisible(int) - Method in class com.wham.jdbc.DatabaseMetaData
JDBC 2.0 Indicates whether a result set's own deletes are visible.
ownInsertsAreVisible(int) - Method in class com.wham.jdbc.DatabaseMetaData
JDBC 2.0 Indicates whether a result set's own inserts are visible.
ownUpdatesAreVisible(int) - Method in class com.wham.jdbc.DatabaseMetaData
JDBC 2.0 Indicates whether a result set's own updates are visible.

P

port(Properties) - Method in class com.wham.jdbc.Driver
Returns the port number property
prepare_stmt() - Method in class com.wham.jdbc.Connection
Insert the method's description here.
prepareCall(String) - Method in class com.wham.jdbc.Connection
Creates a CallableStatement object for calling database stored procedures.
prepareCall(String, int, int) - Method in class com.wham.jdbc.Connection
JDBC 2.0 Creates a CallableStatement object that will generate ResultSet objects with the given type and concurrency.
PreparedStatement - class com.wham.jdbc.PreparedStatement.
An object that represents a precompiled SQL statement.
PreparedStatement(Connection, String) - Constructor for class com.wham.jdbc.PreparedStatement
PreparedStatement constructor comment.
prepareStatement(String) - Method in class com.wham.jdbc.Connection
Creates a PreparedStatement object for sending parameterized SQL statements to the database.
prepareStatement(String, int, int) - Method in class com.wham.jdbc.Connection
JDBC 2.0 Creates a PreparedStatement object that will generate ResultSet objects with the given type and concurrency.
previous() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0
property(String, Properties) - Method in class com.wham.jdbc.Driver
 

R

refreshRow() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Refreshes the current row with its most recent value in the database.
registerOutParameter(int, int) - Method in class com.wham.jdbc.CallableStatement
Registers the OUT parameter in ordinal position parameterIndex to the JDBC type sqlType.
registerOutParameter(int, int, int) - Method in class com.wham.jdbc.CallableStatement
Registers the parameter in ordinal position parameterIndex to be of JDBC type sqlType.
registerOutParameter(int, int, String) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Registers the designated output parameter.
relative(int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0
ResultSet - class com.wham.jdbc.ResultSet.
A ResultSet provides access to a table of data.
ResultSet(Connection, long, TBDRV_COLUMN_SPEC[], Vector, String, int, long, long) - Constructor for class com.wham.jdbc.ResultSet
ResultSet constructor comment.
ResultSetMetaData - class com.wham.jdbc.ResultSetMetaData.
An object that can be used to find out about the types and properties of the columns in a ResultSet.
ResultSetMetaData(TBDRV_COLUMN_SPEC[]) - Constructor for class com.wham.jdbc.ResultSetMetaData
ResultSetMetaData constructor comment.
returnValue(Object, String, Object) - Static method in class com.wham.jdbc.Debug
Trace a method call.
rollback() - Method in class com.wham.jdbc.Connection
Drops all changes made since the previous commit/rollback and releases any database locks currently held by this Connection.
rowDeleted() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Indicates whether a row has been deleted.
rowInserted() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Indicates whether the current row has had an insertion.
rowUpdated() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Indicates whether the current row has been updated.

S

setArray(int, Array) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Sets an Array parameter.
setArray(int, Array) - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Sets an Array parameter.
setAsciiStream(int, InputStream, int) - Method in class com.wham.jdbc.CallableStatement
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setAsciiStream(int, InputStream, int) - Method in class com.wham.jdbc.PreparedStatement
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setAutoCommit(boolean) - Method in class com.wham.jdbc.Connection
Sets this connection's auto-commit mode.
setBigDecimal(int, BigDecimal) - Method in class com.wham.jdbc.CallableStatement
Sets the designated parameter to a java.lang.BigDecimal value.
setBigDecimal(int, BigDecimal) - Method in class com.wham.jdbc.PreparedStatement
Sets the designated parameter to a java.lang.BigDecimal value.
setBinaryStream(int, InputStream, int) - Method in class com.wham.jdbc.CallableStatement
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setBinaryStream(int, InputStream, int) - Method in class com.wham.jdbc.PreparedStatement
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setBlob(int, Blob) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Sets a BLOB parameter.
setBlob(int, Blob) - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Sets a BLOB parameter.
setBoolean(int, boolean) - Method in class com.wham.jdbc.CallableStatement
Sets the designated parameter to a Java boolean value.
setBoolean(int, boolean) - Method in class com.wham.jdbc.PreparedStatement
Sets the designated parameter to a Java boolean value.
setByte(int, byte) - Method in class com.wham.jdbc.CallableStatement
Sets the designated parameter to a Java byte value.
setByte(int, byte) - Method in class com.wham.jdbc.PreparedStatement
Sets the designated parameter to a Java byte value.
setBytes(int, byte[]) - Method in class com.wham.jdbc.CallableStatement
Sets the designated parameter to a Java array of bytes.
setBytes(int, byte[]) - Method in class com.wham.jdbc.PreparedStatement
Sets the designated parameter to a Java array of bytes.
setCatalog(String) - Method in class com.wham.jdbc.Connection
Sets a catalog name in order to select a subspace of this Connection's database in which to work.
setCharacterStream(int, Reader, int) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Sets the designated parameter to the given Reader object, which is the given number of characters long.
setCharacterStream(int, Reader, int) - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Sets the designated parameter to the given Reader object, which is the given number of characters long.
setClob(int, Clob) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Sets a CLOB parameter.
setClob(int, Clob) - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Sets a CLOB parameter.
setCursorName(String) - Method in class com.wham.jdbc.CallableStatement
Defines the SQL cursor name that will be used by subsequent Statement execute methods.
setCursorName(String) - Method in class com.wham.jdbc.PreparedStatement
Defines the SQL cursor name that will be used by subsequent Statement execute methods.
setCursorName(String) - Method in class com.wham.jdbc.Statement
Defines the SQL cursor name that will be used by subsequent Statement execute methods.
setDate(int, Date) - Method in class com.wham.jdbc.CallableStatement
Sets the designated parameter to a java.sql.Date value.
setDate(int, Date) - Method in class com.wham.jdbc.PreparedStatement
Sets the designated parameter to a java.sql.Date value.
setDate(int, Date, Calendar) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Sets the designated parameter to a java.sql.Date value, using the given Calendar object.
setDate(int, Date, Calendar) - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Sets the designated parameter to a java.sql.Date value, using the given Calendar object.
setDouble(int, double) - Method in class com.wham.jdbc.CallableStatement
Sets the designated parameter to a Java double value.
setDouble(int, double) - Method in class com.wham.jdbc.PreparedStatement
Sets the designated parameter to a Java double value.
setEscapeProcessing(boolean) - Method in class com.wham.jdbc.CallableStatement
Sets escape processing on or off.
setEscapeProcessing(boolean) - Method in class com.wham.jdbc.PreparedStatement
Sets escape processing on or off.
setEscapeProcessing(boolean) - Method in class com.wham.jdbc.Statement
Sets escape processing on or off.
setFetchDirection(int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Gives a hint as to the direction in which the rows in this result set will be processed.
setFetchDirection(int) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Gives the driver a hint as to the direction in which the rows in a result set will be processed.
setFetchDirection(int) - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Gives the driver a hint as to the direction in which the rows in a result set will be processed.
setFetchDirection(int) - Method in class com.wham.jdbc.Statement
JDBC 2.0 Gives the driver a hint as to the direction in which the rows in a result set will be processed.
setFetchSize(int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Gives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed for this result set.
setFetchSize(int) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Gives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed.
setFetchSize(int) - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Gives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed.
setFetchSize(int) - Method in class com.wham.jdbc.Statement
JDBC 2.0 Gives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed.
setFloat(int, float) - Method in class com.wham.jdbc.CallableStatement
Sets the designated parameter to a Java float value.
setFloat(int, float) - Method in class com.wham.jdbc.PreparedStatement
Sets the designated parameter to a Java float value.
setInt(int, int) - Method in class com.wham.jdbc.CallableStatement
Sets the designated parameter to a Java int value.
setInt(int, int) - Method in class com.wham.jdbc.PreparedStatement
Sets the designated parameter to a Java int value.
setLong(int, long) - Method in class com.wham.jdbc.CallableStatement
Sets the designated parameter to a Java long value.
setLong(int, long) - Method in class com.wham.jdbc.PreparedStatement
Sets the designated parameter to a Java long value.
setMaxFieldSize(int) - Method in class com.wham.jdbc.CallableStatement
Sets the limit for the maximum number of bytes in a column to the given number of bytes.
setMaxFieldSize(int) - Method in class com.wham.jdbc.PreparedStatement
Sets the limit for the maximum number of bytes in a column to the given number of bytes.
setMaxFieldSize(int) - Method in class com.wham.jdbc.Statement
Sets the limit for the maximum number of bytes in a column to the given number of bytes.
setMaxRows(int) - Method in class com.wham.jdbc.CallableStatement
Sets the limit for the maximum number of rows that any ResultSet can contain to the given number.
setMaxRows(int) - Method in class com.wham.jdbc.PreparedStatement
Sets the limit for the maximum number of rows that any ResultSet can contain to the given number.
setMaxRows(int) - Method in class com.wham.jdbc.Statement
Sets the limit for the maximum number of rows that any ResultSet can contain to the given number.
setNull(int, int) - Method in class com.wham.jdbc.CallableStatement
Sets the designated parameter to SQL NULL.
setNull(int, int) - Method in class com.wham.jdbc.PreparedStatement
Sets the designated parameter to SQL NULL.
setNull(int, int, String) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Sets the designated parameter to SQL NULL.
setNull(int, int, String) - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Sets the designated parameter to SQL NULL.
setObject(int, Object) - Method in class com.wham.jdbc.CallableStatement
Sets the value of a parameter using an object; use the java.lang equivalent objects for integral values.
setObject(int, Object) - Method in class com.wham.jdbc.PreparedStatement
Sets the value of a parameter using an object; use the java.lang equivalent objects for integral values.
setObject(int, Object, int) - Method in class com.wham.jdbc.CallableStatement
Sets the value of the designated parameter with the given object.
setObject(int, Object, int) - Method in class com.wham.jdbc.PreparedStatement
Sets the value of the designated parameter with the given object.
setObject(int, Object, int, int) - Method in class com.wham.jdbc.CallableStatement
Sets the value of a parameter using an object.
setObject(int, Object, int, int) - Method in class com.wham.jdbc.PreparedStatement
Sets the value of a parameter using an object.
setQueryTimeout(int) - Method in class com.wham.jdbc.CallableStatement
Sets the number of seconds the driver will wait for a Statement to execute to the given number of seconds.
setQueryTimeout(int) - Method in class com.wham.jdbc.PreparedStatement
Sets the number of seconds the driver will wait for a Statement to execute to the given number of seconds.
setQueryTimeout(int) - Method in class com.wham.jdbc.Statement
Sets the number of seconds the driver will wait for a Statement to execute to the given number of seconds.
setReadOnly(boolean) - Method in class com.wham.jdbc.Connection
Puts this connection in read-only mode as a hint to enable database optimizations.
setRef(int, Ref) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Sets a REF(<structured-type>) parameter.
setRef(int, Ref) - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Sets a REF(<structured-type>) parameter.
setShort(int, short) - Method in class com.wham.jdbc.CallableStatement
Sets the designated parameter to a Java short value.
setShort(int, short) - Method in class com.wham.jdbc.PreparedStatement
Sets the designated parameter to a Java short value.
setStatement(Statement) - Method in class com.wham.jdbc.ResultSet
Insert the method's description here.
setString(int, String) - Method in class com.wham.jdbc.CallableStatement
Sets the designated parameter to a Java String value.
setString(int, String) - Method in class com.wham.jdbc.PreparedStatement
Sets the designated parameter to a Java String value.
setTime(int, Time) - Method in class com.wham.jdbc.CallableStatement
Sets the designated parameter to a java.sql.Time value.
setTime(int, Time) - Method in class com.wham.jdbc.PreparedStatement
Sets the designated parameter to a java.sql.Time value.
setTime(int, Time, Calendar) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Sets the designated parameter to a java.sql.Time value, using the given Calendar object.
setTime(int, Time, Calendar) - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Sets the designated parameter to a java.sql.Time value, using the given Calendar object.
setTimestamp(int, Timestamp) - Method in class com.wham.jdbc.CallableStatement
Sets the designated parameter to a java.sql.Timestamp value.
setTimestamp(int, Timestamp) - Method in class com.wham.jdbc.PreparedStatement
Sets the designated parameter to a java.sql.Timestamp value.
setTimestamp(int, Timestamp, Calendar) - Method in class com.wham.jdbc.CallableStatement
JDBC 2.0 Sets the designated parameter to a java.sql.Timestamp value, using the given Calendar object.
setTimestamp(int, Timestamp, Calendar) - Method in class com.wham.jdbc.PreparedStatement
JDBC 2.0 Sets the designated parameter to a java.sql.Timestamp value, using the given Calendar object.
setTransactionIsolation(int) - Method in class com.wham.jdbc.Connection
Attempts to change the transaction isolation level to the one given.
setTypeMap(Map) - Method in class com.wham.jdbc.Connection
JDBC 2.0 Installs the given type map as the type map for this connection.
setUnicodeStream(int, InputStream, int) - Method in class com.wham.jdbc.CallableStatement
Deprecated.  
setUnicodeStream(int, InputStream, int) - Method in class com.wham.jdbc.PreparedStatement
Deprecated.  
Statement - class com.wham.jdbc.Statement.
The object used for executing a static SQL statement and obtaining the results produced by it.
Statement(Connection) - Constructor for class com.wham.jdbc.Statement
Statement constructor comment.
storesLowerCaseIdentifiers() - Method in class com.wham.jdbc.DatabaseMetaData
Does the database treat mixed case unquoted SQL identifiers as case insensitive and store them in lower case?
storesLowerCaseQuotedIdentifiers() - Method in class com.wham.jdbc.DatabaseMetaData
Does the database treat mixed case quoted SQL identifiers as case insensitive and store them in lower case?
storesMixedCaseIdentifiers() - Method in class com.wham.jdbc.DatabaseMetaData
Does the database treat mixed case unquoted SQL identifiers as case insensitive and store them in mixed case?
storesMixedCaseQuotedIdentifiers() - Method in class com.wham.jdbc.DatabaseMetaData
Does the database treat mixed case quoted SQL identifiers as case insensitive and store them in mixed case?
storesUpperCaseIdentifiers() - Method in class com.wham.jdbc.DatabaseMetaData
Does the database treat mixed case unquoted SQL identifiers as case insensitive and store them in upper case?
storesUpperCaseQuotedIdentifiers() - Method in class com.wham.jdbc.DatabaseMetaData
Does the database treat mixed case quoted SQL identifiers as case insensitive and store them in upper case?
supportsAlterTableWithAddColumn() - Method in class com.wham.jdbc.DatabaseMetaData
Is "ALTER TABLE" with add column supported?
supportsAlterTableWithDropColumn() - Method in class com.wham.jdbc.DatabaseMetaData
Is "ALTER TABLE" with drop column supported?
supportsANSI92EntryLevelSQL() - Method in class com.wham.jdbc.DatabaseMetaData
Is the ANSI92 entry level SQL grammar supported? All JDBC CompliantTM drivers must return true.
supportsANSI92FullSQL() - Method in class com.wham.jdbc.DatabaseMetaData
Is the ANSI92 full SQL grammar supported?
supportsANSI92IntermediateSQL() - Method in class com.wham.jdbc.DatabaseMetaData
Is the ANSI92 intermediate SQL grammar supported?
supportsBatchUpdates() - Method in class com.wham.jdbc.DatabaseMetaData
JDBC 2.0 Indicates whether the driver supports batch updates.
supportsCatalogsInDataManipulation() - Method in class com.wham.jdbc.DatabaseMetaData
Can a catalog name be used in a data manipulation statement?
supportsCatalogsInIndexDefinitions() - Method in class com.wham.jdbc.DatabaseMetaData
Can a catalog name be used in an index definition statement?
supportsCatalogsInPrivilegeDefinitions() - Method in class com.wham.jdbc.DatabaseMetaData
Can a catalog name be used in a privilege definition statement?
supportsCatalogsInProcedureCalls() - Method in class com.wham.jdbc.DatabaseMetaData
Can a catalog name be used in a procedure call statement?
supportsCatalogsInTableDefinitions() - Method in class com.wham.jdbc.DatabaseMetaData
Can a catalog name be used in a table definition statement?
supportsColumnAliasing() - Method in class com.wham.jdbc.DatabaseMetaData
Is column aliasing supported?
supportsConvert() - Method in class com.wham.jdbc.DatabaseMetaData
Is the CONVERT function between SQL types supported?
supportsConvert(int, int) - Method in class com.wham.jdbc.DatabaseMetaData
Is CONVERT between the given SQL types supported?
supportsCoreSQLGrammar() - Method in class com.wham.jdbc.DatabaseMetaData
Is the ODBC Core SQL grammar supported?
supportsCorrelatedSubqueries() - Method in class com.wham.jdbc.DatabaseMetaData
Are correlated subqueries supported? A JDBC CompliantTM driver always returns true.
supportsDataDefinitionAndDataManipulationTransactions() - Method in class com.wham.jdbc.DatabaseMetaData
Are both data definition and data manipulation statements within a transaction supported?
supportsDataManipulationTransactionsOnly() - Method in class com.wham.jdbc.DatabaseMetaData
Are only data manipulation statements within a transaction supported?
supportsDifferentTableCorrelationNames() - Method in class com.wham.jdbc.DatabaseMetaData
If table correlation names are supported, are they restricted to be different from the names of the tables?
supportsExpressionsInOrderBy() - Method in class com.wham.jdbc.DatabaseMetaData
Are expressions in "ORDER BY" lists supported?
supportsExtendedSQLGrammar() - Method in class com.wham.jdbc.DatabaseMetaData
Is the ODBC Extended SQL grammar supported?
supportsFullOuterJoins() - Method in class com.wham.jdbc.DatabaseMetaData
Are full nested outer joins supported?
supportsGroupBy() - Method in class com.wham.jdbc.DatabaseMetaData
Is some form of "GROUP BY" clause supported?
supportsGroupByBeyondSelect() - Method in class com.wham.jdbc.DatabaseMetaData
Can a "GROUP BY" clause add columns not in the SELECT provided it specifies all the columns in the SELECT?
supportsGroupByUnrelated() - Method in class com.wham.jdbc.DatabaseMetaData
Can a "GROUP BY" clause use columns not in the SELECT?
supportsIntegrityEnhancementFacility() - Method in class com.wham.jdbc.DatabaseMetaData
Is the SQL Integrity Enhancement Facility supported?
supportsLikeEscapeClause() - Method in class com.wham.jdbc.DatabaseMetaData
Is the escape character in "LIKE" clauses supported? A JDBC CompliantTM driver always returns true.
supportsLimitedOuterJoins() - Method in class com.wham.jdbc.DatabaseMetaData
Is there limited support for outer joins? (This will be true if supportFullOuterJoins is true.)
supportsMinimumSQLGrammar() - Method in class com.wham.jdbc.DatabaseMetaData
Is the ODBC Minimum SQL grammar supported? All JDBC CompliantTM drivers must return true.
supportsMixedCaseIdentifiers() - Method in class com.wham.jdbc.DatabaseMetaData
Does the database treat mixed case unquoted SQL identifiers as case sensitive and as a result store them in mixed case? A JDBC CompliantTM driver will always return false.
supportsMixedCaseQuotedIdentifiers() - Method in class com.wham.jdbc.DatabaseMetaData
Does the database treat mixed case quoted SQL identifiers as case sensitive and as a result store them in mixed case? A JDBC CompliantTM driver will always return true.
supportsMultipleResultSets() - Method in class com.wham.jdbc.DatabaseMetaData
Are multiple ResultSets from a single execute supported?
supportsMultipleTransactions() - Method in class com.wham.jdbc.DatabaseMetaData
Can we have multiple transactions open at once (on different connections)?
supportsNonNullableColumns() - Method in class com.wham.jdbc.DatabaseMetaData
Can columns be defined as non-nullable? A JDBC CompliantTM driver always returns true.
supportsOpenCursorsAcrossCommit() - Method in class com.wham.jdbc.DatabaseMetaData
Can cursors remain open across commits?
supportsOpenCursorsAcrossRollback() - Method in class com.wham.jdbc.DatabaseMetaData
Can cursors remain open across rollbacks?
supportsOpenStatementsAcrossCommit() - Method in class com.wham.jdbc.DatabaseMetaData
Can statements remain open across commits?
supportsOpenStatementsAcrossRollback() - Method in class com.wham.jdbc.DatabaseMetaData
Can statements remain open across rollbacks?
supportsOrderByUnrelated() - Method in class com.wham.jdbc.DatabaseMetaData
Can an "ORDER BY" clause use columns not in the SELECT statement?
supportsOuterJoins() - Method in class com.wham.jdbc.DatabaseMetaData
Is some form of outer join supported?
supportsPositionedDelete() - Method in class com.wham.jdbc.DatabaseMetaData
Is positioned DELETE supported?
supportsPositionedUpdate() - Method in class com.wham.jdbc.DatabaseMetaData
Is positioned UPDATE supported?
supportsResultSetConcurrency(int, int) - Method in class com.wham.jdbc.DatabaseMetaData
JDBC 2.0 Does the database support the concurrency type in combination with the given result set type?
supportsResultSetType(int) - Method in class com.wham.jdbc.DatabaseMetaData
JDBC 2.0 Does the database support the given result set type?
supportsSchemasInDataManipulation() - Method in class com.wham.jdbc.DatabaseMetaData
Can a schema name be used in a data manipulation statement?
supportsSchemasInIndexDefinitions() - Method in class com.wham.jdbc.DatabaseMetaData
Can a schema name be used in an index definition statement?
supportsSchemasInPrivilegeDefinitions() - Method in class com.wham.jdbc.DatabaseMetaData
Can a schema name be used in a privilege definition statement?
supportsSchemasInProcedureCalls() - Method in class com.wham.jdbc.DatabaseMetaData
Can a schema name be used in a procedure call statement?
supportsSchemasInTableDefinitions() - Method in class com.wham.jdbc.DatabaseMetaData
Can a schema name be used in a table definition statement?
supportsSelectForUpdate() - Method in class com.wham.jdbc.DatabaseMetaData
Is SELECT for UPDATE supported?
supportsStoredProcedures() - Method in class com.wham.jdbc.DatabaseMetaData
Are stored procedure calls using the stored procedure escape syntax supported?
supportsSubqueriesInComparisons() - Method in class com.wham.jdbc.DatabaseMetaData
Are subqueries in comparison expressions supported? A JDBC CompliantTM driver always returns true.
supportsSubqueriesInExists() - Method in class com.wham.jdbc.DatabaseMetaData
Are subqueries in 'exists' expressions supported? A JDBC CompliantTM driver always returns true.
supportsSubqueriesInIns() - Method in class com.wham.jdbc.DatabaseMetaData
Are subqueries in 'in' statements supported? A JDBC CompliantTM driver always returns true.
supportsSubqueriesInQuantifieds() - Method in class com.wham.jdbc.DatabaseMetaData
Are subqueries in quantified expressions supported? A JDBC CompliantTM driver always returns true.
supportsTableCorrelationNames() - Method in class com.wham.jdbc.DatabaseMetaData
Are table correlation names supported? A JDBC CompliantTM driver always returns true.
supportsTransactionIsolationLevel(int) - Method in class com.wham.jdbc.DatabaseMetaData
Does this database support the given transaction isolation level?
supportsTransactions() - Method in class com.wham.jdbc.DatabaseMetaData
Are transactions supported? If not, invoking the method commit is a noop and the isolation level is TRANSACTION_NONE.
supportsUnion() - Method in class com.wham.jdbc.DatabaseMetaData
Is SQL UNION supported?
supportsUnionAll() - Method in class com.wham.jdbc.DatabaseMetaData
Is SQL UNION ALL supported?

T

trace - Static variable in class com.wham.jdbc.Driver
 
trace(String) - Static method in class com.wham.jdbc.Debug
Set the classes to trace.

U

updateAsciiStream(int, InputStream, int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with an ascii stream value.
updateAsciiStream(String, InputStream, int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with an ascii stream value.
updateBigDecimal(int, BigDecimal) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a BigDecimal value.
updateBigDecimal(String, BigDecimal) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a BigDecimal value.
updateBinaryStream(int, InputStream, int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a binary stream value.
updateBinaryStream(String, InputStream, int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a binary stream value.
updateBoolean(int, boolean) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a boolean value.
updateBoolean(String, boolean) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a boolean value.
updateByte(int, byte) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a byte value.
updateByte(String, byte) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a byte value.
updateBytes(int, byte[]) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a byte array value.
updateBytes(String, byte[]) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a byte array value.
updateCharacterStream(int, Reader, int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a character stream value.
updateCharacterStream(String, Reader, int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a character stream value.
updateDate(int, Date) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a Date value.
updateDate(String, Date) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a Date value.
updateDouble(int, double) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a Double value.
updateDouble(String, double) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a double value.
updateFloat(int, float) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a float value.
updateFloat(String, float) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a float value.
updateInt(int, int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with an integer value.
updateInt(String, int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with an integer value.
updateLong(int, long) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a long value.
updateLong(String, long) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a long value.
updateNull(int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Give a nullable column a null value.
updateNull(String) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a null value.
updateObject(int, Object) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with an Object value.
updateObject(int, Object, int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with an Object value.
updateObject(String, Object) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with an Object value.
updateObject(String, Object, int) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with an Object value.
updateRow() - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates the underlying database with the new contents of the current row.
updatesAreDetected(int) - Method in class com.wham.jdbc.DatabaseMetaData
JDBC 2.0 Indicates whether or not a visible row update can be detected by calling the method ResultSet.rowUpdated.
updateShort(int, short) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a short value.
updateShort(String, short) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a short value.
updateString(int, String) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a String value.
updateString(String, String) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a String value.
updateTime(int, Time) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a Time value.
updateTime(String, Time) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a Time value.
updateTimestamp(int, Timestamp) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a Timestamp value.
updateTimestamp(String, Timestamp) - Method in class com.wham.jdbc.ResultSet
JDBC 2.0 Updates a column with a Timestamp value.
usesLocalFilePerTable() - Method in class com.wham.jdbc.DatabaseMetaData
Does the database use a file for each table?
usesLocalFiles() - Method in class com.wham.jdbc.DatabaseMetaData
Does the database store tables in a local file?

W

wasNull() - Method in class com.wham.jdbc.ResultSet
Reports whether the last column read had a value of SQL NULL.
wasNull() - Method in class com.wham.jdbc.CallableStatement
Indicates whether or not the last OUT parameter read had the value of SQL NULL.

_

_database - Variable in class com.wham.jdbc.Connection
The database we're currently using (called Catalog in JDBC terms).
_myDriver - Variable in class com.wham.jdbc.Connection
The driver instance that created us
_myURL - Variable in class com.wham.jdbc.Connection
The JDBC URL we're using
_pCS - Variable in class com.wham.jdbc.ResultSet
 

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

Copyright © 2019 , WhamTech, Inc.  All rights reserved. This document is provided for information purposes only and the contents hereof are subject to change without notice. Names may be trademarks of their respective owners.