A C D E G I P R S W X

A

addConnectionEventListener(ConnectionEventListener) - Method in interface javax.sql.PooledConnection
Add an event listener.
addRowSetListener(RowSetListener) - Method in interface javax.sql.RowSet
RowSet listener registration.

C

clearParameters() - Method in interface javax.sql.RowSet
In general, parameter values remain in force for repeated use of a RowSet.
close() - Method in interface javax.sql.PooledConnection
Close the physical connection.
connectionClosed(ConnectionEvent) - Method in interface javax.sql.ConnectionEventListener
Invoked when the application calls close() on its representation of the connection.
connectionErrorOccurred(ConnectionEvent) - Method in interface javax.sql.ConnectionEventListener
Invoked when a fatal connection error occurs, just before an SQLException is thrown to the application.
ConnectionEvent - class javax.sql.ConnectionEvent.
The ConnectionEvent class provides information about the source of a connection related event.
ConnectionEvent(PooledConnection) - Constructor for class javax.sql.ConnectionEvent
Construct a ConnectionEvent object.
ConnectionEvent(PooledConnection, SQLException) - Constructor for class javax.sql.ConnectionEvent
Construct a ConnectionEvent object.
ConnectionEventListener - interface javax.sql.ConnectionEventListener.
A ConnectionEventListener is an object that registers to receive events generated by a PooledConnection.
ConnectionPoolDataSource - interface javax.sql.ConnectionPoolDataSource.
A ConnectionPoolDataSource object is a factory for PooledConnection objects.
cursorMoved(RowSetEvent) - Method in interface javax.sql.RowSetListener
Called when a rowset's cursor is moved.

D

DataSource - interface javax.sql.DataSource.
A DataSource object is a factory for Connection objects.

E

execute() - Method in interface javax.sql.RowSet
Fills the rowset with data.

G

getCommand() - Method in interface javax.sql.RowSet
Get the rowset's command property.
getConnection() - Method in interface javax.sql.DataSource
Attempt to establish a database connection.
getConnection() - Method in interface javax.sql.PooledConnection
Create an object handle for this physical connection.
getConnection() - Method in interface javax.sql.RowSetInternal
Get the Connection passed to the rowset.
getConnection(String, String) - Method in interface javax.sql.DataSource
Attempt to establish a database connection.
getDataSourceName() - Method in interface javax.sql.RowSet
The JNDI name that identifies a JDBC data source.
getEscapeProcessing() - Method in interface javax.sql.RowSet
If escape scanning is on (the default), the driver will do escape substitution before sending the SQL to the database.
getLoginTimeout() - Method in interface javax.sql.ConnectionPoolDataSource
Gets the maximum time in seconds that this data source can wait while attempting to connect to a database.
getLoginTimeout() - Method in interface javax.sql.DataSource
Gets the maximum time in seconds that this data source can wait while attempting to connect to a database.
getLoginTimeout() - Method in interface javax.sql.XADataSource
Gets the maximum time in seconds that this data source can wait while attempting to connect to a database.
getLogWriter() - Method in interface javax.sql.ConnectionPoolDataSource
Get the log writer for this data source.
getLogWriter() - Method in interface javax.sql.DataSource
Get the log writer for this data source.
getLogWriter() - Method in interface javax.sql.XADataSource
Get the log writer for this data source.
getMaxFieldSize() - Method in interface javax.sql.RowSet
The maxFieldSize limit (in bytes) is the maximum amount of data returned for any column value; it only applies to BINARY, VARBINARY, LONGVARBINARY, CHAR, VARCHAR, and LONGVARCHAR columns.
getMaxRows() - Method in interface javax.sql.RowSet
The maxRows limit is the maximum number of rows that a RowSet can contain.
getOriginal() - Method in interface javax.sql.RowSetInternal
Returns a result set containing the original value of the rowset.
getOriginalRow() - Method in interface javax.sql.RowSetInternal
Returns a result set containing the original value of the current row only.
getParams() - Method in interface javax.sql.RowSetInternal
Get the parameters that were set on the rowset.
getPassword() - Method in interface javax.sql.RowSet
The password used to create a database connection.
getPooledConnection() - Method in interface javax.sql.ConnectionPoolDataSource
Attempt to establish a database connection.
getPooledConnection(String, String) - Method in interface javax.sql.ConnectionPoolDataSource
Attempt to establish a database connection.
getQueryTimeout() - Method in interface javax.sql.RowSet
The queryTimeout limit is the number of seconds the driver will wait for a Statement to execute.
getSQLException() - Method in class javax.sql.ConnectionEvent
Get the SQLException.
getTransactionIsolation() - Method in interface javax.sql.RowSet
The transaction isolation property contains the JDBC transaction isolation level used.
getTypeMap() - Method in interface javax.sql.RowSet
Get the type-map object associated with this rowset.
getUrl() - Method in interface javax.sql.RowSet
Get the url used to create a JDBC connection.
getUsername() - Method in interface javax.sql.RowSet
The username used to create a database connection.
getXAConnection() - Method in interface javax.sql.XADataSource
Attempt to establish a database connection.
getXAConnection(String, String) - Method in interface javax.sql.XADataSource
Attempt to establish a database connection.
getXAResource() - Method in interface javax.sql.XAConnection
Return an XA resource to the caller.

I

isReadOnly() - Method in interface javax.sql.RowSet
A rowset may be read-only.

P

PooledConnection - interface javax.sql.PooledConnection.
A PooledConnection object is a connection object that provides hooks for connection pool management.

R

readData(RowSetInternal) - Method in interface javax.sql.RowSetReader
Read the new contents of a rowset.
removeConnectionEventListener(ConnectionEventListener) - Method in interface javax.sql.PooledConnection
Remove an event listener.
removeRowSetListener(RowSetListener) - Method in interface javax.sql.RowSet
RowSet listener deregistration.
rowChanged(RowSetEvent) - Method in interface javax.sql.RowSetListener
Called when a row is inserted, updated, or deleted.
RowSet - interface javax.sql.RowSet.
The RowSet interface adds support to the JDBC API for the JavaBeans(TM) component model.
rowSetChanged(RowSetEvent) - Method in interface javax.sql.RowSetListener
Called when the rowset is changed.
RowSetEvent - class javax.sql.RowSetEvent.
A RowSetEvent is generated when something important happens in the life of a rowset, like when a column value changes.
RowSetEvent(RowSet) - Constructor for class javax.sql.RowSetEvent
Construct a RowSetEvent object.
RowSetInternal - interface javax.sql.RowSetInternal.
A rowset object presents itself to a reader or writer as an instance of RowSetInternal.
RowSetListener - interface javax.sql.RowSetListener.
The RowSetListener interface is implemented by a component that wants to be notified when a significant event happens in the life of a RowSet
RowSetMetaData - interface javax.sql.RowSetMetaData.
The RowSetMetaData interface extends ResultSetMetaData with methods that allow a metadata object to be initialized.
RowSetReader - interface javax.sql.RowSetReader.
An object implementing the RowSetReader interface may be registered with a RowSet object that supports the reader/writer paradigm.
RowSetWriter - interface javax.sql.RowSetWriter.
An object that implements the RowSetWriter interface may be registered with a RowSet object that supports the reader/writer paradigm.

S

setArray(int, Array) - Method in interface javax.sql.RowSet
Set an Array parameter.
setAsciiStream(int, InputStream, int) - Method in interface javax.sql.RowSet
When a very large ASCII value is input to a LONGVARCHAR parameter, it may be more practical to send it via a java.io.InputStream.
setAutoIncrement(int, boolean) - Method in interface javax.sql.RowSetMetaData
Specify whether the is column automatically numbered, thus read-only.
setBigDecimal(int, BigDecimal) - Method in interface javax.sql.RowSet
Set a parameter to a java.lang.BigDecimal value.
setBinaryStream(int, InputStream, int) - Method in interface javax.sql.RowSet
When a very large binary value is input to a LONGVARBINARY parameter, it may be more practical to send it via a java.io.InputStream.
setBlob(int, Blob) - Method in interface javax.sql.RowSet
Set a BLOB parameter.
setBoolean(int, boolean) - Method in interface javax.sql.RowSet
Set a parameter to a Java boolean value.
setByte(int, byte) - Method in interface javax.sql.RowSet
Set a parameter to a Java byte value.
setBytes(int, byte[]) - Method in interface javax.sql.RowSet
Set a parameter to a Java array of bytes.
setCaseSensitive(int, boolean) - Method in interface javax.sql.RowSetMetaData
Specify whether the column is case sensitive.
setCatalogName(int, String) - Method in interface javax.sql.RowSetMetaData
Specify the column's table's catalog name, if any.
setCharacterStream(int, Reader, int) - Method in interface javax.sql.RowSet
When a very large UNICODE value is input to a LONGVARCHAR parameter, it may be more practical to send it via a java.io.Reader.
setClob(int, Clob) - Method in interface javax.sql.RowSet
Set a CLOB parameter.
setColumnCount(int) - Method in interface javax.sql.RowSetMetaData
Set the number of columns in the RowSet.
setColumnDisplaySize(int, int) - Method in interface javax.sql.RowSetMetaData
Specify the column's normal max width in chars.
setColumnLabel(int, String) - Method in interface javax.sql.RowSetMetaData
Specify the suggested column title for use in printouts and displays, if any.
setColumnName(int, String) - Method in interface javax.sql.RowSetMetaData
Specify the column name.
setColumnType(int, int) - Method in interface javax.sql.RowSetMetaData
Specify the column's SQL type.
setColumnTypeName(int, String) - Method in interface javax.sql.RowSetMetaData
Specify the column's data source specific type name, if any.
setCommand(String) - Method in interface javax.sql.RowSet
Set the rowset's command property.
setConcurrency(int) - Method in interface javax.sql.RowSet
Set the rowset concurrency.
setCurrency(int, boolean) - Method in interface javax.sql.RowSetMetaData
Specify whether the column is a cash value.
setDataSourceName(String) - Method in interface javax.sql.RowSet
Set the data source name.
setDate(int, Date) - Method in interface javax.sql.RowSet
Set a parameter to a java.sql.Date value.
setDate(int, Date, Calendar) - Method in interface javax.sql.RowSet
Set a parameter to a java.sql.Date value.
setDouble(int, double) - Method in interface javax.sql.RowSet
Set a parameter to a Java double value.
setEscapeProcessing(boolean) - Method in interface javax.sql.RowSet
If escape scanning is on (the default), the driver will do escape substitution before sending the SQL to the database.
setFloat(int, float) - Method in interface javax.sql.RowSet
Set a parameter to a Java float value.
setInt(int, int) - Method in interface javax.sql.RowSet
Set a parameter to a Java int value.
setLoginTimeout(int) - Method in interface javax.sql.ConnectionPoolDataSource
Sets the maximum time in seconds that this data source will wait while attempting to connect to a database.
setLoginTimeout(int) - Method in interface javax.sql.DataSource
Sets the maximum time in seconds that this data source will wait while attempting to connect to a database.
setLoginTimeout(int) - Method in interface javax.sql.XADataSource
Sets the maximum time in seconds that this data source will wait while attempting to connect to a database.
setLogWriter(PrintWriter) - Method in interface javax.sql.ConnectionPoolDataSource
Set the log writer for this data source.
setLogWriter(PrintWriter) - Method in interface javax.sql.DataSource
Set the log writer for this data source.
setLogWriter(PrintWriter) - Method in interface javax.sql.XADataSource
Set the log writer for this data source.
setLong(int, long) - Method in interface javax.sql.RowSet
Set a parameter to a Java long value.
setMaxFieldSize(int) - Method in interface javax.sql.RowSet
The maxFieldSize limit (in bytes) is set to limit the size of data that can be returned for any column value; it only applies to BINARY, VARBINARY, LONGVARBINARY, CHAR, VARCHAR, and LONGVARCHAR fields.
setMaxRows(int) - Method in interface javax.sql.RowSet
The maxRows limit is set to limit the number of rows that any RowSet can contain.
setMetaData(RowSetMetaData) - Method in interface javax.sql.RowSetInternal
Set the rowset's metadata.
setNull(int, int) - Method in interface javax.sql.RowSet
Set a parameter to SQL NULL.
setNull(int, int, String) - Method in interface javax.sql.RowSet
JDBC 2.0 Set a parameter to SQL NULL.
setNullable(int, int) - Method in interface javax.sql.RowSetMetaData
Specify whether the column's value can be set to NULL.
setObject(int, Object) - Method in interface javax.sql.RowSet
Set the value of a parameter using an object; use the java.lang equivalent objects for integral values.
setObject(int, Object, int) - Method in interface javax.sql.RowSet
This method is like setObject above, but the scale used is the scale of the second parameter.
setObject(int, Object, int, int) - Method in interface javax.sql.RowSet
Set the value of a parameter using an object; use the java.lang equivalent objects for integral values.
setPassword(String) - Method in interface javax.sql.RowSet
Set the password.
setPrecision(int, int) - Method in interface javax.sql.RowSetMetaData
Specify the column's number of decimal digits.
setQueryTimeout(int) - Method in interface javax.sql.RowSet
The queryTimeout limit is the number of seconds the driver will wait for a Statement to execute.
setReadOnly(boolean) - Method in interface javax.sql.RowSet
Set the read-onlyness of the rowset
setRef(int, Ref) - Method in interface javax.sql.RowSet
Set a REF(<structured-type>) parameter.
setScale(int, int) - Method in interface javax.sql.RowSetMetaData
Specify the column's number of digits to right of the decimal point.
setSchemaName(int, String) - Method in interface javax.sql.RowSetMetaData
Specify the column's table's schema, if any.
setSearchable(int, boolean) - Method in interface javax.sql.RowSetMetaData
Specify whether the column can be used in a where clause.
setShort(int, short) - Method in interface javax.sql.RowSet
Set a parameter to a Java short value.
setSigned(int, boolean) - Method in interface javax.sql.RowSetMetaData
Speicfy whether the column is a signed number.
setString(int, String) - Method in interface javax.sql.RowSet
Set a parameter to a Java String value.
setTableName(int, String) - Method in interface javax.sql.RowSetMetaData
Specify the column's table name, if any.
setTime(int, Time) - Method in interface javax.sql.RowSet
Set a parameter to a java.sql.Time value.
setTime(int, Time, Calendar) - Method in interface javax.sql.RowSet
Set a parameter to a java.sql.Time value.
setTimestamp(int, Timestamp) - Method in interface javax.sql.RowSet
Set a parameter to a java.sql.Timestamp value.
setTimestamp(int, Timestamp, Calendar) - Method in interface javax.sql.RowSet
Set a parameter to a java.sql.Timestamp value.
setTransactionIsolation(int) - Method in interface javax.sql.RowSet
Set the transaction isolation.
setType(int) - Method in interface javax.sql.RowSet
Set the rowset type.
setTypeMap(Map) - Method in interface javax.sql.RowSet
Install a type-map object as the default type-map for this rowset.
setUrl(String) - Method in interface javax.sql.RowSet
Set the url used to create a connection.
setUsername(String) - Method in interface javax.sql.RowSet
Set the user name.

W

writeData(RowSetInternal) - Method in interface javax.sql.RowSetWriter
This method is called to write data to the data source that is backing the rowset.

X

XAConnection - interface javax.sql.XAConnection.
An XAConnection object provides support for distributed transactions.
XADataSource - interface javax.sql.XADataSource.
A factory for XAConnection objects.

A C D E G I P R S W X