|
|||||||||
| Home >> All >> com >> rohanclan >> ashpool >> [ jdbc overview ] | PREV NEXT | ||||||||
A
- acceptsURL(String) - Method in class com.rohanclan.ashpool.jdbc.Driver
- Retrieves whether the driver thinks that it can open a connection to the given URL.
- addBatch(String) - Method in class com.rohanclan.ashpool.jdbc.Statement
- Adds the given SQL command to the current list of commmands for this
Statementobject. - allProceduresAreCallable() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether the current user can call all the procedures
returned by the method
getProcedures. - allTablesAreSelectable() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether the current user can use all the tables returned
by the method
getTablesin aSELECTstatement.
C
- Connection - class com.rohanclan.ashpool.jdbc.Connection.
- Connection() - Constructor for class com.rohanclan.ashpool.jdbc.Connection
- Creates a new instance of Connection
- Connection(File) - Constructor for class com.rohanclan.ashpool.jdbc.Connection
- cancel() - Method in class com.rohanclan.ashpool.jdbc.Statement
- Cancels this
Statementobject if both the DBMS and driver support aborting an SQL statement. - clearBatch() - Method in class com.rohanclan.ashpool.jdbc.Statement
- Empties this
Statementobject's current list of SQL commands. - clearWarnings() - Method in class com.rohanclan.ashpool.jdbc.Connection
- Clears all warnings reported for this
Connectionobject. - clearWarnings() - Method in class com.rohanclan.ashpool.jdbc.Statement
- Clears all the warnings reported on this
Statementobject. - close() - Method in class com.rohanclan.ashpool.jdbc.Connection
- Releases this
Connectionobject's database and JDBC resources immediately instead of waiting for them to be automatically released. - close() - Method in class com.rohanclan.ashpool.jdbc.Statement
- Releases this
Statementobject's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed. - com.rohanclan.ashpool.jdbc - package com.rohanclan.ashpool.jdbc
- commit() - Method in class com.rohanclan.ashpool.jdbc.Connection
- Makes all changes made since the previous
commit/rollback permanent and releases any database locks
currently held by this
Connectionobject. - conMan - Variable in class com.rohanclan.ashpool.jdbc.Connection
- conn - Variable in class com.rohanclan.ashpool.jdbc.MetaData
- handle to the connection
- connMan - Variable in class com.rohanclan.ashpool.jdbc.Statement
- connect(String, Properties) - Method in class com.rohanclan.ashpool.jdbc.Driver
- Attempts to make a database connection to the given URL.
- createStatement() - Method in class com.rohanclan.ashpool.jdbc.Connection
- Creates a
Statementobject for sending SQL statements to the database. - createStatement(int, int) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Creates a
Statementobject that will generateResultSetobjects with the given type and concurrency. - createStatement(int, int, int) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Creates a
Statementobject that will generateResultSetobjects with the given type, concurrency, and holdability. - currentresultset - Variable in class com.rohanclan.ashpool.jdbc.Statement
D
- Driver - class com.rohanclan.ashpool.jdbc.Driver.
- Driver() - Constructor for class com.rohanclan.ashpool.jdbc.Driver
- Creates a new instance of Driver
- dataDefinitionCausesTransactionCommit() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether a data definition statement within a transaction forces the transaction to commit.
- dataDefinitionIgnoredInTransactions() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database ignores a data definition statement within a transaction.
- deletesAreDetected(int) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether or not a visible row delete can be detected by
calling the method
ResultSet.rowDeleted. - doesMaxRowSizeIncludeBlobs() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether the return value for the method
getMaxRowSizeincludes the SQL data typesLONGVARCHARandLONGVARBINARY.
E
- execute(String) - Method in class com.rohanclan.ashpool.jdbc.Statement
- Executes the given SQL statement, which may return multiple results.
- execute(String, String[]) - Method in class com.rohanclan.ashpool.jdbc.Statement
- 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, int[]) - Method in class com.rohanclan.ashpool.jdbc.Statement
- 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, int) - Method in class com.rohanclan.ashpool.jdbc.Statement
- 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.
- executeBatch() - Method in class com.rohanclan.ashpool.jdbc.Statement
- Submits a batch of commands to the database for execution and if all commands execute successfully, returns an array of update counts.
- executeQuery(String) - Method in class com.rohanclan.ashpool.jdbc.Statement
- Executes the given SQL statement, which returns a single
ResultSetobject. - executeUpdate(String) - Method in class com.rohanclan.ashpool.jdbc.Statement
- Executes the given SQL statement, which may be an
INSERT,UPDATE, orDELETEstatement or an SQL statement that returns nothing, such as an SQL DDL statement. - executeUpdate(String, String[]) - Method in class com.rohanclan.ashpool.jdbc.Statement
- 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, int) - Method in class com.rohanclan.ashpool.jdbc.Statement
- Executes the given SQL statement and signals the driver with the
given flag about whether the
auto-generated keys produced by this
Statementobject should be made available for retrieval. - executeUpdate(String, int[]) - Method in class com.rohanclan.ashpool.jdbc.Statement
- 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.
G
- getAttributes(String, String, String, String) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- 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 com.rohanclan.ashpool.jdbc.Connection
- Retrieves the current auto-commit mode for this
Connectionobject. - getBestRowIdentifier(String, String, String, int, boolean) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a description of a table's optimal set of columns that uniquely identifies a row.
- getCatalog() - Method in class com.rohanclan.ashpool.jdbc.Connection
- Retrieves this
Connectionobject's current catalog name. - getCatalogSeparator() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the
Stringthat this database uses as the separator between a catalog and table name. - getCatalogTerm() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the database vendor's preferred term for "catalog".
- getCatalogs() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the catalog names available in this database.
- getColumnPrivileges(String, String, String, String) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a description of the access rights for a table's columns.
- getColumns(String, String, String, String) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a description of table columns available in the specified catalog.
- getConnection() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the connection that produced this metadata object.
- getConnection() - Method in class com.rohanclan.ashpool.jdbc.Statement
- Retrieves the
Connectionobject that produced thisStatementobject. - getConnectionManager() - Method in class com.rohanclan.ashpool.jdbc.Connection
- getCrossReference(String, String, String, String, String, String) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- 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).
- getDatabaseMajorVersion() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the major version number of the underlying database.
- getDatabaseMinorVersion() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the minor version number of the underlying database.
- getDatabaseProductName() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the name of this database product.
- getDatabaseProductVersion() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the version number of this database product.
- getDefaultTransactionIsolation() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves this database's default transaction isolation level.
- getDriverMajorVersion() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves this JDBC driver's major version number.
- getDriverMinorVersion() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves this JDBC driver's minor version number.
- getDriverName() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the name of this JDBC driver.
- getDriverVersion() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the version number of this JDBC driver as a
String. - getExportedKeys(String, String, String) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- 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 com.rohanclan.ashpool.jdbc.MetaData
- 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 com.rohanclan.ashpool.jdbc.Statement
- Retrieves the direction for fetching rows from
database tables that is the default for result sets
generated from this
Statementobject. - getFetchSize() - Method in class com.rohanclan.ashpool.jdbc.Statement
- Retrieves the number of result set rows that is the default
fetch size for
ResultSetobjects generated from thisStatementobject. - getGeneratedKeys() - Method in class com.rohanclan.ashpool.jdbc.Statement
- Retrieves any auto-generated keys created as a result of executing this
Statementobject. - getHoldability() - Method in class com.rohanclan.ashpool.jdbc.Connection
- Retrieves the current holdability of
ResultSetobjects created using thisConnectionobject. - getIdentifierQuoteString() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the string used to quote SQL identifiers.
- getImportedKeys(String, String, String) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- 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 com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a description of the given table's indices and statistics.
- getJDBCMajorVersion() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the major JDBC version number for this driver.
- getJDBCMinorVersion() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the minor JDBC version number for this driver.
- getMajorVersion() - Method in class com.rohanclan.ashpool.jdbc.Driver
- Retrieves the driver's major version number.
- getMaxBinaryLiteralLength() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of hex characters this database allows in an inline binary literal.
- getMaxCatalogNameLength() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of characters that this database allows in a catalog name.
- getMaxCharLiteralLength() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of characters this database allows for a character literal.
- getMaxColumnNameLength() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of characters this database allows for a column name.
- getMaxColumnsInGroupBy() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of columns this database allows in a
GROUP BYclause. - getMaxColumnsInIndex() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of columns this database allows in an index.
- getMaxColumnsInOrderBy() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of columns this database allows in an
ORDER BYclause. - getMaxColumnsInSelect() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of columns this database allows in a
SELECTlist. - getMaxColumnsInTable() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of columns this database allows in a table.
- getMaxConnections() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of concurrent connections to this database that are possible.
- getMaxCursorNameLength() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of characters that this database allows in a cursor name.
- getMaxFieldSize() - Method in class com.rohanclan.ashpool.jdbc.Statement
- Retrieves the maximum number of bytes that can be
returned for character and binary column values in a
ResultSetobject produced by thisStatementobject. - getMaxIndexLength() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of bytes this database allows for an index, including all of the parts of the index.
- getMaxProcedureNameLength() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of characters that this database allows in a procedure name.
- getMaxRowSize() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of bytes this database allows in a single row.
- getMaxRows() - Method in class com.rohanclan.ashpool.jdbc.Statement
- Retrieves the maximum number of rows that a
ResultSetobject produced by thisStatementobject can contain. - getMaxSchemaNameLength() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of characters that this database allows in a schema name.
- getMaxStatementLength() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of characters this database allows in an SQL statement.
- getMaxStatements() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of active statements to this database that can be open at the same time.
- getMaxTableNameLength() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of characters this database allows in a table name.
- getMaxTablesInSelect() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of tables this database allows in a
SELECTstatement. - getMaxUserNameLength() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the maximum number of characters this database allows in a user name.
- getMetaData() - Method in class com.rohanclan.ashpool.jdbc.Connection
- Retrieves a
DatabaseMetaDataobject that contains metadata about the database to which thisConnectionobject represents a connection. - getMinorVersion() - Method in class com.rohanclan.ashpool.jdbc.Driver
- Gets the driver's minor version number.
- getMoreResults() - Method in class com.rohanclan.ashpool.jdbc.Statement
- Moves to this
Statementobject's next result, returnstrueif it is aResultSetobject, and implicitly closes any currentResultSetobject(s) obtained with the methodgetResultSet. - getMoreResults(int) - Method in class com.rohanclan.ashpool.jdbc.Statement
- Moves to this
Statementobject's next result, deals with any currentResultSetobject(s) according to the instructions specified by the given flag, and returnstrueif the next result is aResultSetobject. - getNumericFunctions() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a comma-separated list of math functions available with this database.
- getPrimaryKeys(String, String, String) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a description of the given table's primary key columns.
- getProcedureColumns(String, String, String, String) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a description of the given catalog's stored procedure parameter and result columns.
- getProcedureTerm() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the database vendor's preferred term for "procedure".
- getProcedures(String, String, String) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a description of the stored procedures available in the given catalog.
- getPropertyInfo(String, Properties) - Method in class com.rohanclan.ashpool.jdbc.Driver
- Gets information about the possible properties for this driver.
- getQueryTimeout() - Method in class com.rohanclan.ashpool.jdbc.Statement
- Retrieves the number of seconds the driver will
wait for a
Statementobject to execute. - getResultSet() - Method in class com.rohanclan.ashpool.jdbc.Statement
- Retrieves the current result as a
ResultSetobject. - getResultSetConcurrency() - Method in class com.rohanclan.ashpool.jdbc.Statement
- Retrieves the result set concurrency for
ResultSetobjects generated by thisStatementobject. - getResultSetHoldability() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the default holdability of this
ResultSetobject. - getResultSetHoldability() - Method in class com.rohanclan.ashpool.jdbc.Statement
- Retrieves the result set holdability for
ResultSetobjects generated by thisStatementobject. - getResultSetType() - Method in class com.rohanclan.ashpool.jdbc.Statement
- Retrieves the result set type for
ResultSetobjects generated by thisStatementobject. - getSQLKeywords() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a comma-separated list of all of this database's SQL keywords that are NOT also SQL92 keywords.
- getSQLStateType() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Indicates whether the SQLSTATEs returned by
SQLException.getSQLStateis X/Open (now known as Open Group) SQL CLI or SQL99. - getSchemaTerm() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the database vendor's preferred term for "schema".
- getSchemas() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the schema names available in this database.
- getSearchStringEscape() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the string that can be used to escape wildcard characters.
- getStringFunctions() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a comma-separated list of string functions available with this database.
- getSuperTables(String, String, String) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a description of the table hierarchies defined in a particular schema in this database.
- getSuperTypes(String, String, String) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a description of the user-defined type (UDT) hierarchies defined in a particular schema in this database.
- getSystemFunctions() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a comma-separated list of system functions available with this database.
- getTablePrivileges(String, String, String) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a description of the access rights for each table available in a catalog.
- getTableTypes() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the table types available in this database.
- getTables(String, String, String, String[]) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a description of the tables available in the given catalog.
- getTimeDateFunctions() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a comma-separated list of the time and date functions available with this database.
- getTransactionIsolation() - Method in class com.rohanclan.ashpool.jdbc.Connection
- Retrieves this
Connectionobject's current transaction isolation level. - getTypeInfo() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a description of all the standard SQL types supported by this database.
- getTypeMap() - Method in class com.rohanclan.ashpool.jdbc.Connection
- Retrieves the
Mapobject associated with thisConnectionobject. - getUDTs(String, String, String, int[]) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a description of the user-defined types (UDTs) defined in a particular schema.
- getURL() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the URL for this DBMS.
- getUpdateCount() - Method in class com.rohanclan.ashpool.jdbc.Statement
- Retrieves the current result as an update count;
if the result is a
ResultSetobject or there are no more results, -1 is returned. - getUserName() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves the user name as known to this database.
- getVersionColumns(String, String, String) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves a description of a table's columns that are automatically updated when any value in a row is updated.
- getWarnings() - Method in class com.rohanclan.ashpool.jdbc.Connection
- Retrieves the first warning reported by calls on this
Connectionobject. - getWarnings() - Method in class com.rohanclan.ashpool.jdbc.Statement
- Retrieves the first warning reported by calls on this
Statementobject.
I
- insertsAreDetected(int) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether or not a visible row insert can be detected
by calling the method
ResultSet.rowInserted. - isCatalogAtStart() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether a catalog appears at the start of a fully qualified table name.
- isClosed() - Method in class com.rohanclan.ashpool.jdbc.Connection
- Retrieves whether this
Connectionobject has been closed. - isReadOnly() - Method in class com.rohanclan.ashpool.jdbc.Connection
- Retrieves whether this
Connectionobject is in read-only mode. - isReadOnly() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database is in read-only mode.
J
- jdbcCompliant() - Method in class com.rohanclan.ashpool.jdbc.Driver
- Reports whether this driver is a genuine JDBC CompliantTM driver.
L
- locatorsUpdateCopy() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Indicates whether updates made to a LOB are made on a copy or directly to the LOB.
M
- MetaData - class com.rohanclan.ashpool.jdbc.MetaData.
- MetaData() - Constructor for class com.rohanclan.ashpool.jdbc.MetaData
- Creates a new instance of MetaData
- MetaData(Connection) - Constructor for class com.rohanclan.ashpool.jdbc.MetaData
N
- nativeSQL(String) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Converts the given SQL statement into the system's native SQL grammar.
- newInstance() - Method in class com.rohanclan.ashpool.jdbc.Driver
- nullPlusNonNullIsNull() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports concatenations between
NULLand non-NULLvalues beingNULL. - nullsAreSortedAtEnd() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether
NULLvalues are sorted at the end regardless of sort order. - nullsAreSortedAtStart() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether
NULLvalues are sorted at the start regardless of sort order. - nullsAreSortedHigh() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether
NULLvalues are sorted high. - nullsAreSortedLow() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether
NULLvalues are sorted low.
O
- othersDeletesAreVisible(int) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether deletes made by others are visible.
- othersInsertsAreVisible(int) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether inserts made by others are visible.
- othersUpdatesAreVisible(int) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether updates made by others are visible.
- ownDeletesAreVisible(int) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether a result set's own deletes are visible.
- ownInsertsAreVisible(int) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether a result set's own inserts are visible.
- ownUpdatesAreVisible(int) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether for the given type of
ResultSetobject, the result set's own updates are visible.
P
- prepareCall(String) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Creates a
CallableStatementobject for calling database stored procedures. - prepareCall(String, int, int) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Creates a
CallableStatementobject that will generateResultSetobjects with the given type and concurrency. - prepareCall(String, int, int, int) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Creates a
CallableStatementobject that will generateResultSetobjects with the given type and concurrency. - prepareStatement(String) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Creates a
PreparedStatementobject for sending parameterized SQL statements to the database. - prepareStatement(String, String[]) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Creates a default
PreparedStatementobject capable of returning the auto-generated keys designated by the given array. - prepareStatement(String, int) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Creates a default
PreparedStatementobject that has the capability to retrieve auto-generated keys. - prepareStatement(String, int[]) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Creates a default
PreparedStatementobject capable of returning the auto-generated keys designated by the given array. - prepareStatement(String, int, int) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Creates a
PreparedStatementobject that will generateResultSetobjects with the given type and concurrency. - prepareStatement(String, int, int, int) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Creates a
PreparedStatementobject that will generateResultSetobjects with the given type, concurrency, and holdability.
R
- releaseSavepoint(Savepoint) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Removes the given
Savepointobject from the current transaction. - resultSets - Variable in class com.rohanclan.ashpool.jdbc.Statement
- rollback() - Method in class com.rohanclan.ashpool.jdbc.Connection
- Undoes all changes made in the current transaction
and releases any database locks currently held
by this
Connectionobject. - rollback(Savepoint) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Undoes all changes made after the given
Savepointobject was set.
S
- Statement - class com.rohanclan.ashpool.jdbc.Statement.
- Statement() - Constructor for class com.rohanclan.ashpool.jdbc.Statement
- Creates a new instance of Statement
- setAutoCommit(boolean) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Sets this connection's auto-commit mode to the given state.
- setCatalog(String) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Sets the given catalog name in order to select
a subspace of this
Connectionobject's database in which to work. - setConnectionManager(ConnectionManager) - Method in class com.rohanclan.ashpool.jdbc.Statement
- setCursorName(String) - Method in class com.rohanclan.ashpool.jdbc.Statement
- Sets the SQL cursor name to the given
String, which will be used by subsequentStatementobjectexecutemethods. - setEscapeProcessing(boolean) - Method in class com.rohanclan.ashpool.jdbc.Statement
- Sets escape processing on or off.
- setFetchDirection(int) - Method in class com.rohanclan.ashpool.jdbc.Statement
- Gives the driver a hint as to the direction in which
rows will be processed in
ResultSetobjects created using thisStatementobject. - setFetchSize(int) - Method in class com.rohanclan.ashpool.jdbc.Statement
- Gives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed.
- setHoldability(int) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Changes the holdability of
ResultSetobjects created using thisConnectionobject to the given holdability. - setMaxFieldSize(int) - Method in class com.rohanclan.ashpool.jdbc.Statement
- Sets the limit for the maximum number of bytes in a
ResultSetcolumn storing character or binary values to the given number of bytes. - setMaxRows(int) - Method in class com.rohanclan.ashpool.jdbc.Statement
- Sets the limit for the maximum number of rows that any
ResultSetobject can contain to the given number. - setQueryTimeout(int) - Method in class com.rohanclan.ashpool.jdbc.Statement
- Sets the number of seconds the driver will wait for a
Statementobject to execute to the given number of seconds. - setReadOnly(boolean) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Puts this connection in read-only mode as a hint to the driver to enable database optimizations.
- setSavepoint() - Method in class com.rohanclan.ashpool.jdbc.Connection
- Creates an unnamed savepoint in the current transaction and
returns the new
Savepointobject that represents it. - setSavepoint(String) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Creates a savepoint with the given name in the current transaction
and returns the new
Savepointobject that represents it. - setTransactionIsolation(int) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Attempts to change the transaction isolation level for this
Connectionobject to the one given. - setTypeMap(Map) - Method in class com.rohanclan.ashpool.jdbc.Connection
- Installs the given
TypeMapobject as the type map for thisConnectionobject. - storesLowerCaseIdentifiers() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database treats mixed case unquoted SQL identifiers as case insensitive and stores them in lower case.
- storesLowerCaseQuotedIdentifiers() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database treats mixed case quoted SQL identifiers as case insensitive and stores them in lower case.
- storesMixedCaseIdentifiers() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database treats mixed case unquoted SQL identifiers as case insensitive and stores them in mixed case.
- storesMixedCaseQuotedIdentifiers() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database treats mixed case quoted SQL identifiers as case insensitive and stores them in mixed case.
- storesUpperCaseIdentifiers() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database treats mixed case unquoted SQL identifiers as case insensitive and stores them in upper case.
- storesUpperCaseQuotedIdentifiers() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database treats mixed case quoted SQL identifiers as case insensitive and stores them in upper case.
- supportsANSI92EntryLevelSQL() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports the ANSI92 entry level SQL grammar.
- supportsANSI92FullSQL() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports the ANSI92 full SQL grammar supported.
- supportsANSI92IntermediateSQL() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports the ANSI92 intermediate SQL grammar supported.
- supportsAlterTableWithAddColumn() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports
ALTER TABLEwith add column. - supportsAlterTableWithDropColumn() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports
ALTER TABLEwith drop column. - supportsBatchUpdates() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports batch updates.
- supportsCatalogsInDataManipulation() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether a catalog name can be used in a data manipulation statement.
- supportsCatalogsInIndexDefinitions() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether a catalog name can be used in an index definition statement.
- supportsCatalogsInPrivilegeDefinitions() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether a catalog name can be used in a privilege definition statement.
- supportsCatalogsInProcedureCalls() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether a catalog name can be used in a procedure call statement.
- supportsCatalogsInTableDefinitions() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether a catalog name can be used in a table definition statement.
- supportsColumnAliasing() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports column aliasing.
- supportsConvert() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports the
CONVERTfunction between SQL types. - supportsConvert(int, int) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports the
CONVERTfor two given SQL types. - supportsCoreSQLGrammar() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports the ODBC Core SQL grammar.
- supportsCorrelatedSubqueries() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports correlated subqueries.
- supportsDataDefinitionAndDataManipulationTransactions() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports both data definition and data manipulation statements within a transaction.
- supportsDataManipulationTransactionsOnly() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports only data manipulation statements within a transaction.
- supportsDifferentTableCorrelationNames() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether, when table correlation names are supported, they are restricted to being different from the names of the tables.
- supportsExpressionsInOrderBy() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports expressions in
ORDER BYlists. - supportsExtendedSQLGrammar() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports the ODBC Extended SQL grammar.
- supportsFullOuterJoins() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports full nested outer joins.
- supportsGetGeneratedKeys() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether auto-generated keys can be retrieved after a statement has been executed.
- supportsGroupBy() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports some form of
GROUP BYclause. - supportsGroupByBeyondSelect() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports using columns not included in
the
SELECTstatement in aGROUP BYclause provided that all of the columns in theSELECTstatement are included in theGROUP BYclause. - supportsGroupByUnrelated() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports using a column that is
not in the
SELECTstatement in aGROUP BYclause. - supportsIntegrityEnhancementFacility() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports the SQL Integrity Enhancement Facility.
- supportsLikeEscapeClause() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports specifying a
LIKEescape clause. - supportsLimitedOuterJoins() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database provides limited support for outer joins.
- supportsMinimumSQLGrammar() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports the ODBC Minimum SQL grammar.
- supportsMixedCaseIdentifiers() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database treats mixed case unquoted SQL identifiers as case sensitive and as a result stores them in mixed case.
- supportsMixedCaseQuotedIdentifiers() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database treats mixed case quoted SQL identifiers as case sensitive and as a result stores them in mixed case.
- supportsMultipleOpenResults() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether it is possible to have multiple
ResultSetobjects returned from aCallableStatementobject simultaneously. - supportsMultipleResultSets() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports getting multiple
ResultSetobjects from a single call to the methodexecute. - supportsMultipleTransactions() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database allows having multiple transactions open at once (on different connections).
- supportsNamedParameters() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports named parameters to callable statements.
- supportsNonNullableColumns() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether columns in this database may be defined as non-nullable.
- supportsOpenCursorsAcrossCommit() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports keeping cursors open across commits.
- supportsOpenCursorsAcrossRollback() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports keeping cursors open across rollbacks.
- supportsOpenStatementsAcrossCommit() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports keeping statements open across commits.
- supportsOpenStatementsAcrossRollback() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports keeping statements open across rollbacks.
- supportsOrderByUnrelated() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports using a column that is
not in the
SELECTstatement in anORDER BYclause. - supportsOuterJoins() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports some form of outer join.
- supportsPositionedDelete() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports positioned
DELETEstatements. - supportsPositionedUpdate() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports positioned
UPDATEstatements. - supportsResultSetConcurrency(int, int) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports the given concurrency type in combination with the given result set type.
- supportsResultSetHoldability(int) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports the given result set holdability.
- supportsResultSetType(int) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports the given result set type.
- supportsSavepoints() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports savepoints.
- supportsSchemasInDataManipulation() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether a schema name can be used in a data manipulation statement.
- supportsSchemasInIndexDefinitions() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether a schema name can be used in an index definition statement.
- supportsSchemasInPrivilegeDefinitions() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether a schema name can be used in a privilege definition statement.
- supportsSchemasInProcedureCalls() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether a schema name can be used in a procedure call statement.
- supportsSchemasInTableDefinitions() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether a schema name can be used in a table definition statement.
- supportsSelectForUpdate() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports
SELECT FOR UPDATEstatements. - supportsStatementPooling() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves weather this database supports statement pooling.
- supportsStoredProcedures() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports stored procedure calls that use the stored procedure escape syntax.
- supportsSubqueriesInComparisons() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports subqueries in comparison expressions.
- supportsSubqueriesInExists() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports subqueries in
EXISTSexpressions. - supportsSubqueriesInIns() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports subqueries in
INstatements. - supportsSubqueriesInQuantifieds() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports subqueries in quantified expressions.
- supportsTableCorrelationNames() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports table correlation names.
- supportsTransactionIsolationLevel(int) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports the given transaction isolation level.
- supportsTransactions() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports transactions.
- supportsUnion() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports SQL
UNION. - supportsUnionAll() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database supports SQL
UNION ALL.
U
- updatesAreDetected(int) - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether or not a visible row update can be detected by
calling the method
ResultSet.rowUpdated. - usesLocalFilePerTable() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database uses a file for each table.
- usesLocalFiles() - Method in class com.rohanclan.ashpool.jdbc.MetaData
- Retrieves whether this database stores tables in a local file.
A C D E G I J L M N O P R S U
|
|||||||||
| Home >> All >> com >> rohanclan >> ashpool >> [ jdbc overview ] | PREV NEXT | ||||||||