A C D E G I J P R S T W X

A

acceptChanges() - Method in class javax.sql.CachedRowSet
Propagate all row update, insert, and delete changes to a data source.
acceptChanges(Connection) - Method in class javax.sql.CachedRowSet
Like acceptChanges() above, but takes a Connection argument.
addConnectionEventListener(ConnectionEventListener) - Method in interface javax.sql.PooledConnection
Add an event listener.
addRowSetListener(RowSetListener) - Method in interface javax.sql.RowSet
RowSet listener registration.

C

CachedRowSet - class javax.sql.CachedRowSet.
A CachedRowSet is a disconnected, serializable, scrollable container for tabular data.
CachedRowSet() - Constructor for class javax.sql.CachedRowSet
Create a CachedRowSet object.
cancelRowDelete() - Method in class javax.sql.CachedRowSet
Cancels deletion of the current row.
cancelRowInsert() - Method in class javax.sql.CachedRowSet
Cancels insertion of the current row.
clearParameters() - Method in interface javax.sql.RowSet
In general, parameter values remain in force for repeated use of a RowSet.
clone() - Method in class javax.sql.CachedRowSet
Returns an identical rowset object backed by a deep copy of this rowset's data.
close() - Method in interface javax.sql.PooledConnection
Close the database 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.
The ConnectionEventListener interface is implemented by a connection pooling component.
ConnectionPoolDataSource - interface javax.sql.ConnectionPoolDataSource.
A ConnectionPoolDataSource object is a factory for PooledConnection objects.
createCopy() - Method in class javax.sql.CachedRowSet
Same as clone() above().
createShared() - Method in class javax.sql.CachedRowSet
Returns a new rowset object backed by the same data.
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.
execute(Connection) - Method in class javax.sql.CachedRowSet
Populates the rowset with data.

G

getCatalogName(int) - Method in class javax.sql.RowSetMetaDataImpl
What's a column's table's catalog name?
getColumnClassName(int) - Method in class javax.sql.RowSetMetaDataImpl
 
getColumnCount() - Method in class javax.sql.RowSetMetaDataImpl
What's the number of columns in the ResultSet?
getColumnDisplaySize(int) - Method in class javax.sql.RowSetMetaDataImpl
What's the column's normal max width in chars?
getColumnLabel(int) - Method in class javax.sql.RowSetMetaDataImpl
What's the suggested column title for use in printouts and displays?
getColumnName(int) - Method in class javax.sql.RowSetMetaDataImpl
What's a column's name?
getColumnType(int) - Method in class javax.sql.RowSetMetaDataImpl
What's a column's SQL type?
getColumnTypeName(int) - Method in class javax.sql.RowSetMetaDataImpl
What's a column's data source specific type name?
getCommand() - Method in interface javax.sql.RowSet
Get the rowset's command property.
getConnection() - Method in interface javax.sql.PooledConnection
Create an object handle for a database connection.
getConnection() - Method in interface javax.sql.RowSetInternal
Get the Connection passed to the rowset.
getConnection() - Method in interface javax.sql.DataSource
Attempt to establish a database connection.
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.XADataSource
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.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.
getLogWriter() - Method in interface javax.sql.XADataSource
Get the log writer for this data source.
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.
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.
getPrecision(int) - Method in class javax.sql.RowSetMetaDataImpl
What's a column's number of decimal digits?
getQueryTimeout() - Method in interface javax.sql.RowSet
The queryTimeout limit is the number of seconds the driver will wait for a Statement to execute.
getReader() - Method in class javax.sql.CachedRowSet
Get the rowset's reader.
getReader() - Method in class javax.sql.RowSetWriterImpl
Gets the reader.
getScale(int) - Method in class javax.sql.RowSetMetaDataImpl
What's a column's number of digits to right of the decimal point?
getSchemaName(int) - Method in class javax.sql.RowSetMetaDataImpl
What's a column's table's schema?
getShowDeleted() - Method in class javax.sql.CachedRowSet
This property determines whether or not rows marked for deletion appear in the set of current rows.
getSQLException() - Method in class javax.sql.ConnectionEvent
Get the SQLException.
getTableName(int) - Method in class javax.sql.RowSetMetaDataImpl
What's a column's table name?
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.
getWriter() - Method in class javax.sql.CachedRowSet
Get the rowset's writer.
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

isAutoIncrement(int) - Method in class javax.sql.RowSetMetaDataImpl
Is the column automatically numbered, thus read-only?
isCaseSensitive(int) - Method in class javax.sql.RowSetMetaDataImpl
Does a column's case matter?
isCurrency(int) - Method in class javax.sql.RowSetMetaDataImpl
Is the column a cash value?
isDefinitelyWritable(int) - Method in class javax.sql.RowSetMetaDataImpl
Will a write on the column definitely succeed?
isNullable(int) - Method in class javax.sql.RowSetMetaDataImpl
Can you put a NULL in this column?
isReadOnly() - Method in interface javax.sql.RowSet
A rowset may be read-only.
isReadOnly(int) - Method in class javax.sql.RowSetMetaDataImpl
Is a column definitely not writable?
isSearchable(int) - Method in class javax.sql.RowSetMetaDataImpl
Can the column be used in a where clause?
isSigned(int) - Method in class javax.sql.RowSetMetaDataImpl
Is the column a signed number?
isWritable(int) - Method in class javax.sql.RowSetMetaDataImpl
Is it possible for a write on the column to succeed?

J

javax.sql - package javax.sql
 
JDBCRowSet - class javax.sql.JDBCRowSet.
A JDBCRowSet is a connected rowset.
JDBCRowSet() - Constructor for class javax.sql.JDBCRowSet
Construct a JDBCRowSet object.

P

PooledConnection - interface javax.sql.PooledConnection.
A PooledConnection object is a connection object that provides hooks for connection pool management.
populate(ResultSet) - Method in class javax.sql.CachedRowSet
Populate the CachedRowSet object with data from a ResultSet.

R

readData(RowSetInternal) - Method in interface javax.sql.RowSetReader
Read the new contents of a rowset.
readData(RowSetInternal) - Method in class javax.sql.RowSetReaderImpl
This method is called by the rowset internally when     the application invokes execute() to read a new set of rows.
release() - Method in class javax.sql.CachedRowSet
Releases the current contents of the rowset.
removeConnectionEventListener(ConnectionEventListener) - Method in interface javax.sql.PooledConnection
Remove an event listener.
removeRowSetListener(RowSetListener) - Method in interface javax.sql.RowSet
RowSet listener deregistration.
restoreOriginal() - Method in class javax.sql.CachedRowSet
Restores the rowset to its original state, i.e.
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.
 
RowSetMetaDataImpl - class javax.sql.RowSetMetaDataImpl.
The RowSetMetaDataImpl class provides the default implementation of the RowSetMetaData interface.
RowSetMetaDataImpl() - Constructor for class javax.sql.RowSetMetaDataImpl
Construct a RowSetMetaDataImpl object.
RowSetReader - interface javax.sql.RowSetReader.
The RowSetReader interface.
RowSetReaderImpl - class javax.sql.RowSetReaderImpl.
The RowSetReaderImpl class is an example implementation of the RowSetReader interface.
RowSetReaderImpl() - Constructor for class javax.sql.RowSetReaderImpl
 
RowSetWriter - interface javax.sql.RowSetWriter.
The RowSetWriter interface.
RowSetWriterImpl - class javax.sql.RowSetWriterImpl.
The RowSetWriterImpl class is an example implementation of the RowSetWriter interface.
RowSetWriterImpl() - Constructor for class javax.sql.RowSetWriterImpl
 

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 class javax.sql.RowSetMetaDataImpl
Specify whether the is column automatically numbered, thus read-only.
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 class javax.sql.RowSetMetaDataImpl
Specify whether the column is case sensitive.
setCaseSensitive(int, boolean) - Method in interface javax.sql.RowSetMetaData
Specify whether the column is case sensitive.
setCatalogName(int, String) - Method in class javax.sql.RowSetMetaDataImpl
Specify the column's table's catalog name, if any.
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 class javax.sql.RowSetMetaDataImpl
Set the number of columns in the RowSet.
setColumnCount(int) - Method in interface javax.sql.RowSetMetaData
Set the number of columns in the RowSet.
setColumnDisplaySize(int, int) - Method in class javax.sql.RowSetMetaDataImpl
Specify the column's normal max width in chars.
setColumnDisplaySize(int, int) - Method in interface javax.sql.RowSetMetaData
Specify the column's normal max width in chars.
setColumnLabel(int, String) - Method in class javax.sql.RowSetMetaDataImpl
Specify the suggested column title for use in printouts and displays, if any.
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 class javax.sql.RowSetMetaDataImpl
Specify the column name.
setColumnName(int, String) - Method in interface javax.sql.RowSetMetaData
Specify the column name.
setColumnType(int, int) - Method in class javax.sql.RowSetMetaDataImpl
Specify the column's SQL type.
setColumnType(int, int) - Method in interface javax.sql.RowSetMetaData
Specify the column's SQL type.
setColumnTypeName(int, String) - Method in class javax.sql.RowSetMetaDataImpl
Specify the column's data source specific type name, if any.
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 class javax.sql.RowSetMetaDataImpl
Specify whether the column is a cash value.
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.XADataSource
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.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.
setLogWriter(PrintWriter) - Method in interface javax.sql.XADataSource
Set the log writer for this data source.
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.
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 class javax.sql.RowSetMetaDataImpl
Specify whether the column's value can be set to 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 class javax.sql.RowSetMetaDataImpl
Specify the column's number of decimal digits.
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.
setReader(RowSetReader) - Method in class javax.sql.CachedRowSet
Set the rowset's reader.
setReader(RowSetReaderImpl) - Method in class javax.sql.RowSetWriterImpl
Sets the reader.
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 class javax.sql.RowSetMetaDataImpl
Specify the column's number of digits to right of the decimal point.
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 class javax.sql.RowSetMetaDataImpl
Specify the column's table's schema, if any.
setSchemaName(int, String) - Method in interface javax.sql.RowSetMetaData
Specify the column's table's schema, if any.
setSearchable(int, boolean) - Method in class javax.sql.RowSetMetaDataImpl
Specify whether the column can be used in a where clause.
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.
setShowDeleted(boolean) - Method in class javax.sql.CachedRowSet
Set the show deleted property.
setSigned(int, boolean) - Method in class javax.sql.RowSetMetaDataImpl
Speicfy whether the column is a signed number.
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 class javax.sql.RowSetMetaDataImpl
Specify the column's table name, if any.
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.
setWriter(RowSetWriter) - Method in class javax.sql.CachedRowSet
Set the rowset's writer.

T

toCollection() - Method in class javax.sql.CachedRowSet
Convert the rowset to a collection of tables.
toCollection(int) - Method in class javax.sql.CachedRowSet
Return a column of the rowset as a collection.

W

WebRowSet - class javax.sql.WebRowSet.
The WebRowSet class.
WebRowSet() - Constructor for class javax.sql.WebRowSet
 
writeData(RowSetInternal) - Method in interface javax.sql.RowSetWriter
This method is called to write data to the data source that is backing the rowset.
writeData(RowSetInternal) - Method in class javax.sql.RowSetWriterImpl
This method is called by the rowset internally when     the application invokes acceptUpdates().

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 J P R S T W X