Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep
A C D E G I J L M N O P R S U

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 Statement object.
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 getTables in a SELECT statement.

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 Statement object if both the DBMS and driver support aborting an SQL statement.
clearBatch() - Method in class com.rohanclan.ashpool.jdbc.Statement
Empties this Statement object's current list of SQL commands.
clearWarnings() - Method in class com.rohanclan.ashpool.jdbc.Connection
Clears all warnings reported for this Connection object.
clearWarnings() - Method in class com.rohanclan.ashpool.jdbc.Statement
Clears all the warnings reported on this Statement object.
close() - Method in class com.rohanclan.ashpool.jdbc.Connection
Releases this Connection object'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 Statement object'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 Connection object.
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 Statement object for sending SQL statements to the database.
createStatement(int, int) - Method in class com.rohanclan.ashpool.jdbc.Connection
Creates a Statement object that will generate ResultSet objects with the given type and concurrency.
createStatement(int, int, int) - Method in class com.rohanclan.ashpool.jdbc.Connection
Creates a Statement object that will generate ResultSet objects 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 getMaxRowSize includes the SQL data types LONGVARCHAR and LONGVARBINARY.

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 ResultSet object.
executeUpdate(String) - Method in class com.rohanclan.ashpool.jdbc.Statement
Executes the given SQL statement, which may be an INSERT, UPDATE, or DELETE statement or an SQL statement that returns nothing, such as an SQL DDL statement.
executeUpdate(String, 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 Statement object 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 Connection object.
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 Connection object's current catalog name.
getCatalogSeparator() - Method in class com.rohanclan.ashpool.jdbc.MetaData
Retrieves the String that 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 Connection object that produced this Statement object.
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 Statement object.
getFetchSize() - Method in class com.rohanclan.ashpool.jdbc.Statement
Retrieves the number of result set rows that is the default fetch size for ResultSet objects generated from this Statement object.
getGeneratedKeys() - Method in class com.rohanclan.ashpool.jdbc.Statement
Retrieves any auto-generated keys created as a result of executing this Statement object.
getHoldability() - Method in class com.rohanclan.ashpool.jdbc.Connection
Retrieves the current holdability of ResultSet objects created using this Connection object.
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 BY clause.
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 BY clause.
getMaxColumnsInSelect() - Method in class com.rohanclan.ashpool.jdbc.MetaData
Retrieves the maximum number of columns this database allows in a SELECT list.
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 ResultSet object produced by this Statement object.
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 ResultSet object produced by this Statement object 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 SELECT statement.
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 DatabaseMetaData object that contains metadata about the database to which this Connection object 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 Statement object's next result, returns true if it is a ResultSet object, and implicitly closes any current ResultSet object(s) obtained with the method getResultSet.
getMoreResults(int) - Method in class com.rohanclan.ashpool.jdbc.Statement
Moves to this Statement object's next result, deals with any current ResultSet object(s) according to the instructions specified by the given flag, and returns true if the next result is a ResultSet object.
getNumericFunctions() - Method in class 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 Statement object to execute.
getResultSet() - Method in class com.rohanclan.ashpool.jdbc.Statement
Retrieves the current result as a ResultSet object.
getResultSetConcurrency() - Method in class com.rohanclan.ashpool.jdbc.Statement
Retrieves the result set concurrency for ResultSet objects generated by this Statement object.
getResultSetHoldability() - Method in class com.rohanclan.ashpool.jdbc.MetaData
Retrieves the default holdability of this ResultSet object.
getResultSetHoldability() - Method in class com.rohanclan.ashpool.jdbc.Statement
Retrieves the result set holdability for ResultSet objects generated by this Statement object.
getResultSetType() - Method in class com.rohanclan.ashpool.jdbc.Statement
Retrieves the result set type for ResultSet objects generated by this Statement object.
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.getSQLState is 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 Connection object'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 Map object associated with this Connection object.
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 ResultSet object 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 Connection object.
getWarnings() - Method in class com.rohanclan.ashpool.jdbc.Statement
Retrieves the first warning reported by calls on this Statement object.

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 Connection object has been closed.
isReadOnly() - Method in class com.rohanclan.ashpool.jdbc.Connection
Retrieves whether this Connection object 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 NULL and non-NULL values being NULL.
nullsAreSortedAtEnd() - Method in class com.rohanclan.ashpool.jdbc.MetaData
Retrieves whether NULL values are sorted at the end regardless of sort order.
nullsAreSortedAtStart() - Method in class com.rohanclan.ashpool.jdbc.MetaData
Retrieves whether NULL values are sorted at the start regardless of sort order.
nullsAreSortedHigh() - Method in class com.rohanclan.ashpool.jdbc.MetaData
Retrieves whether NULL values are sorted high.
nullsAreSortedLow() - Method in class com.rohanclan.ashpool.jdbc.MetaData
Retrieves whether NULL values 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 ResultSet object, the result set's own updates are visible.

P

prepareCall(String) - Method in class com.rohanclan.ashpool.jdbc.Connection
Creates a CallableStatement object for calling database stored procedures.
prepareCall(String, int, int) - Method in class com.rohanclan.ashpool.jdbc.Connection
Creates a CallableStatement object that will generate ResultSet objects with the given type and concurrency.
prepareCall(String, int, int, int) - Method in class com.rohanclan.ashpool.jdbc.Connection
Creates a CallableStatement object that will generate ResultSet objects with the given type and concurrency.
prepareStatement(String) - Method in class com.rohanclan.ashpool.jdbc.Connection
Creates a PreparedStatement object for sending parameterized SQL statements to the database.
prepareStatement(String, String[]) - Method in class com.rohanclan.ashpool.jdbc.Connection
Creates a default PreparedStatement object 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 PreparedStatement object that has the capability to retrieve auto-generated keys.
prepareStatement(String, int[]) - Method in class com.rohanclan.ashpool.jdbc.Connection
Creates a default PreparedStatement object 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 PreparedStatement object that will generate ResultSet objects with the given type and concurrency.
prepareStatement(String, int, int, int) - Method in class com.rohanclan.ashpool.jdbc.Connection
Creates a PreparedStatement object that will generate ResultSet objects with the given type, concurrency, and holdability.

R

releaseSavepoint(Savepoint) - Method in class com.rohanclan.ashpool.jdbc.Connection
Removes the given Savepoint object 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 Connection object.
rollback(Savepoint) - Method in class com.rohanclan.ashpool.jdbc.Connection
Undoes all changes made after the given Savepoint object 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 Connection object'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 subsequent Statement object execute methods.
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 ResultSet objects created using this Statement object.
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 ResultSet objects created using this Connection object 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 ResultSet column 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 ResultSet object 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 Statement object 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 Savepoint object 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 Savepoint object that represents it.
setTransactionIsolation(int) - Method in class com.rohanclan.ashpool.jdbc.Connection
Attempts to change the transaction isolation level for this Connection object to the one given.
setTypeMap(Map) - Method in class com.rohanclan.ashpool.jdbc.Connection
Installs the given TypeMap object as the type map for this Connection object.
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 TABLE with add column.
supportsAlterTableWithDropColumn() - Method in class com.rohanclan.ashpool.jdbc.MetaData
Retrieves whether this database supports ALTER TABLE with 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 CONVERT function between SQL types.
supportsConvert(int, int) - Method in class com.rohanclan.ashpool.jdbc.MetaData
Retrieves whether this database supports the CONVERT for 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 BY lists.
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 BY clause.
supportsGroupByBeyondSelect() - Method in class com.rohanclan.ashpool.jdbc.MetaData
Retrieves whether this database supports using columns not included in the SELECT statement in a GROUP BY clause provided that all of the columns in the SELECT statement are included in the GROUP BY clause.
supportsGroupByUnrelated() - Method in class com.rohanclan.ashpool.jdbc.MetaData
Retrieves whether this database supports using a column that is not in the SELECT statement in a GROUP BY clause.
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 LIKE escape 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 ResultSet objects returned from a CallableStatement object simultaneously.
supportsMultipleResultSets() - Method in class com.rohanclan.ashpool.jdbc.MetaData
Retrieves whether this database supports getting multiple ResultSet objects from a single call to the method execute.
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 SELECT statement in an ORDER BY clause.
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 DELETE statements.
supportsPositionedUpdate() - Method in class com.rohanclan.ashpool.jdbc.MetaData
Retrieves whether this database supports positioned UPDATE statements.
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 UPDATE statements.
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 EXISTS expressions.
supportsSubqueriesInIns() - Method in class com.rohanclan.ashpool.jdbc.MetaData
Retrieves whether this database supports subqueries in IN statements.
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