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

A

ASCII_STREAM_PARAM - Static variable in class javax.sql.rowset.BaseRowSet
A constant indicating to a RowSetReaderImpl object that a given parameter is an ASCII stream.
absolute(int) - Method in class com.sun.rowset.CachedRowSetImpl
Moves this CachedRowSetImpl object's cursor to the row number specified.
absolute(int) - Method in class com.sun.rowset.FilteredRowSetImpl
Moves this CachedRowSetImpl object's cursor to the row number specified.
absolute(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Moves the cursor to the given row number in this rowset's internal ResultSet object.
absolute(int) - Method in class com.sun.rowset.JoinRowSetImpl
Moves this JoinRowSetImpl object's cursor to the row number specified.
absolute(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Moves this CachedRowSetImpl object's cursor to the row number specified.
absolute(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
absolute(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
acceptChanges() - Method in class com.sun.rowset.CachedRowSetImpl
Propagates all row update, insert, and delete changes to the underlying data source backing this CachedRowSetImpl object.
acceptChanges(Connection) - Method in class com.sun.rowset.CachedRowSetImpl
Propagates all row update, insert, and delete changes to the data source backing this CachedRowSetImpl object using the given Connection object.
acceptChanges() - Method in class com.sun.rowset.internal.SyncResolverImpl
Propagates all row update, insert, and delete changes to the underlying data source backing this CachedRowSetImpl object.
acceptChanges(Connection) - Method in class com.sun.rowset.internal.SyncResolverImpl
Propagates all row update, insert, and delete changes to the data source backing this CachedRowSetImpl object using the given Connection object.
acceptChanges() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Propagates row update, insert and delete changes made to this CachedRowSet object to the underlying data source.

This method calls on this CachedRowSet object's writer to do the work behind the scenes. Standard CachedRowSet implementations should use the SyncFactory singleton to obtain a SyncProvider instance providing a RowSetWriter object (writer). The writer will attempt to propagate changes made in this CachedRowSet object back to the data source.

When the method acceptChanges executes successfully, in addition to writing changes to the data source, it makes the values in the current row be the values in the original row.

Depending on the synchronization level of the SyncProvider implementation being used, the writer will compare the original values with those in the data source to check for conflicts. When there is a conflict, the RIOptimisticProvider implementation, for example, throws a SyncProviderException and does not write anything to the data source.

An application may choose to catch the SyncProviderException object and retrieve the SyncResolver object it contains. The SyncResolver object lists the conflicts row by row and sets a lock on the data source to avoid further conflicts while the current conflicts are being resolved. Further, for each conflict, it provides methods for examining the conflict and setting the value that should be persisted in the data source. After all conflicts have been resolved, an application must call the acceptChanges method again to write resolved values to the data source. If all of the values in the data source are already the values to be persisted, the method acceptChanges does nothing.

Some provider implementations may use locks to ensure that there are no conflicts. In such cases, it is guaranteed that the writer will succeed in writing changes to the data source when the method acceptChanges is called. This method may be called immediately after the methods updateRow, insertRow, or deleteRow have been called, but it is more efficient to call it only once after all changes have been made so that only one connection needs to be established.

Note: The acceptChanges() method will determine if the COMMIT_ON_ACCEPT_CHANGES is set to true or not. If it is set to true, all updates in the synchronization are committed to the data source. Otherwise, the application must explicity call the commit() or rollback() methods as appropriate.

acceptChanges(Connection) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Propagates all row update, insert and delete changes to the data source backing this CachedRowSet object using the specified Connection object to establish a connection to the data source.

The other version of the acceptChanges method is not passed a connection because it uses the Connection object already defined within the RowSet object, which is the connection used for populating it initially.

This form of the method acceptChanges is similar to the form that takes no arguments; however, unlike the other form, this form can be used only when the underlying data source is a JDBC data source. The updated Connection properties must be used by the SyncProvider to reset the RowSetWriter configuration to ensure that the contents of the CachedRowSet object are synchronized correctly.

When the method acceptChanges executes successfully, in addition to writing changes to the data source, it makes the values in the current row be the values in the original row.

Depending on the synchronization level of the SyncProvider implementation being used, the writer will compare the original values with those in the data source to check for conflicts. When there is a conflict, the RIOptimisticProvider implementation, for example, throws a SyncProviderException and does not write anything to the data source.

An application may choose to catch the SyncProviderException object and retrieve the SyncResolver object it contains. The SyncResolver object lists the conflicts row by row and sets a lock on the data source to avoid further conflicts while the current conflicts are being resolved. Further, for each conflict, it provides methods for examining the conflict and setting the value that should be persisted in the data source. After all conflicts have been resolved, an application must call the acceptChanges method again to write resolved values to the data source. If all of the values in the data source are already the values to be persisted, the method acceptChanges does nothing.

Some provider implementations may use locks to ensure that there are no conflicts. In such cases, it is guaranteed that the writer will succeed in writing changes to the data source when the method acceptChanges is called. This method may be called immediately after the methods updateRow, insertRow, or deleteRow have been called, but it is more efficient to call it only once after all changes have been made so that only one connection needs to be established.

Note: The acceptChanges() method will determine if the COMMIT_ON_ACCEPT_CHANGES is set to true or not. If it is set to true, all updates in the synchronization are committed to the data source. Otherwise, the application must explicity call the commit or rollback methods as appropriate.

acceptChanges() - Method in interface javax.sql.rowset.CachedRowSet
Propagates row update, insert and delete changes made to this CachedRowSet object to the underlying data source.
acceptChanges(Connection) - Method in interface javax.sql.rowset.CachedRowSet
Propagates all row update, insert and delete changes to the data source backing this CachedRowSet object using the specified Connection object to establish a connection to the data source.
addPropertyChangeListener(PropertyChangeListener) - Method in interface com.sun.sql.rowset.CachedRowSetX
Add a PropertyChangeListener to the listener list.
addPropertyChangeListener(String, PropertyChangeListener) - Method in interface com.sun.sql.rowset.CachedRowSetX
Add a PropertyChangeListener for a specific property.
addPropertyChangeListener(PropertyChangeListener) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Add a PropertyChangeListener to the listener list. The listener is registered for all bound properties.
addPropertyChangeListener(String, PropertyChangeListener) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Add a PropertyChangeListener for a specific property. The listener will be invoked only on a change of the specific property.
addPropertyChangeListener(PropertyChangeListener) - Method in interface com.sun.sql.rowset.JdbcRowSetX
Add a PropertyChangeListener to the listener list.
addPropertyChangeListener(String, PropertyChangeListener) - Method in interface com.sun.sql.rowset.JdbcRowSetX
Add a PropertyChangeListener for a specific property.
addPropertyChangeListener(PropertyChangeListener) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
addPropertyChangeListener(String, PropertyChangeListener) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
addRowSet(Joinable) - Method in class com.sun.rowset.JoinRowSetImpl
Adds the given RowSet object to this JoinRowSet object.
addRowSet(RowSet, int) - Method in class com.sun.rowset.JoinRowSetImpl
Adds the given RowSet object to the JOIN relation and sets the designated column as the match column.
addRowSet(RowSet, String) - Method in class com.sun.rowset.JoinRowSetImpl
Adds the given RowSet object to the JOIN relationship and sets the designated column as the match column.
addRowSet(RowSet[], int[]) - Method in class com.sun.rowset.JoinRowSetImpl
Adds the given RowSet objects to the JOIN relationship and sets the designated columns as the match columns.
addRowSet(RowSet[], String[]) - Method in class com.sun.rowset.JoinRowSetImpl
Adds the given RowSet objects to the JOIN relationship and sets the designated columns as the match columns.
addRowSet(Joinable) - Method in interface javax.sql.rowset.JoinRowSet
Adds the given RowSet object to this JoinRowSet object.
addRowSet(RowSet, int) - Method in interface javax.sql.rowset.JoinRowSet
Adds the given RowSet object to this JoinRowSet object and sets the designated column as the match column for the RowSet object.
addRowSet(RowSet, String) - Method in interface javax.sql.rowset.JoinRowSet
Adds rowset to this JoinRowSet object and sets the designated column as the match column.
addRowSet(RowSet[], int[]) - Method in interface javax.sql.rowset.JoinRowSet
Adds one or more RowSet objects contained in the given array of RowSet objects to this JoinRowSet object and sets the match column for each of the RowSet objects to the match columns in the given array of column indexes.
addRowSet(RowSet[], String[]) - Method in interface javax.sql.rowset.JoinRowSet
Adds one or more RowSet objects contained in the given array of RowSet objects to this JoinRowSet object and sets the match column for each of the RowSet objects to the match columns in the given array of column names.
addRowSetListener(RowSetListener) - Method in class javax.sql.rowset.BaseRowSet
The listener will be notified whenever an event occurs on this RowSet object.
afterLast() - Method in class com.sun.rowset.CachedRowSetImpl
Moves this CachedRowSetImpl object's cursor to the end of the rowset, just after the last row.
afterLast() - Method in class com.sun.rowset.JdbcRowSetImpl
Moves the cursor to the end of this rowset's ResultSet object, just after the last row.
afterLast() - Method in class com.sun.rowset.JoinRowSetImpl
Moves this JoinRowSetImpl object's cursor to the end of the rowset, just after the last row.
afterLast() - Method in class com.sun.rowset.internal.SyncResolverImpl
Moves this CachedRowSetImpl object's cursor to the end of the rowset, just after the last row.
afterLast() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
afterLast() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
asciiStream - Variable in class javax.sql.rowset.BaseRowSet
The InputStream object that will be returned by the method getAsciiStream, which is specified in the ResultSet interface.

B

BINARY_STREAM_PARAM - Static variable in class javax.sql.rowset.BaseRowSet
A constant indicating to a RowSetReaderImpl object that a given parameter is a binary stream.
BaseRow - class com.sun.rowset.internal.BaseRow.
The abstract base class from which the classes Row The class BaseRow stores a row's original values as an array of Object values, which can be retrieved with the method getOrigRow.
BaseRow() - Constructor for class com.sun.rowset.internal.BaseRow
 
BaseRowSet - class javax.sql.rowset.BaseRowSet.
An abstract class providing a RowSet object with its basic functionality.
BaseRowSet() - Constructor for class javax.sql.rowset.BaseRowSet
Constructs a new BaseRowSet object initialized with a default Vector object for its listeners field.
BaseRowSetX - class com.sun.sql.rowset.BaseRowSetX.
An abstract class extending javax.sql.rowset.BaseRowSet which contains changes necessary to support using RowSets as java beans.
BaseRowSetX() - Constructor for class com.sun.sql.rowset.BaseRowSetX
 
beforeFirst() - Method in class com.sun.rowset.CachedRowSetImpl
Moves this CachedRowSetImpl object's cursor to the front of the rowset, just before the first row.
beforeFirst() - Method in class com.sun.rowset.JdbcRowSetImpl
Moves the cursor to the front of this rowset's ResultSet object, just before the first row.
beforeFirst() - Method in class com.sun.rowset.JoinRowSetImpl
Moves this JoinRowSetImpl object's cursor to the front of the rowset, just before the first row.
beforeFirst() - Method in class com.sun.rowset.internal.SyncResolverImpl
Moves this CachedRowSetImpl object's cursor to the front of the rowset, just before the first row.
beforeFirst() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
beforeFirst() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
binaryStream - Variable in class javax.sql.rowset.BaseRowSet
The InputStream object that will be returned by the method getBinaryStream, which is specified in the ResultSet interface.

C

COMMIT_ON_ACCEPT_CHANGES - Static variable in interface javax.sql.rowset.CachedRowSet
Causes the CachedRowSet object's SyncProvider to commit the changes when acceptChanges() is called.
CROSS_JOIN - Static variable in interface javax.sql.rowset.JoinRowSet
An ANSI-style JOIN providing a cross product of two tables
CachedRowSet - interface javax.sql.rowset.CachedRowSet.
The interface that all standard implementations of CachedRowSet must implement.
CachedRowSetImpl - class com.sun.rowset.CachedRowSetImpl.
The standard implementation of the CachedRowSet interface.
CachedRowSetImpl() - Constructor for class com.sun.rowset.CachedRowSetImpl
Constructs a new default CachedRowSetImpl object with the capacity to hold 100 rows.
CachedRowSetImpl(Hashtable) - Constructor for class com.sun.rowset.CachedRowSetImpl
Provides a CachedRowSetImpl instance with the same default properties as as the zero parameter constructor.
CachedRowSetReader - class com.sun.rowset.internal.CachedRowSetReader.
The facility called by the RIOptimisticProvider object internally to read data into it.
CachedRowSetReader() - Constructor for class com.sun.rowset.internal.CachedRowSetReader
 
CachedRowSetWriter - class com.sun.rowset.internal.CachedRowSetWriter.
The facility called on internally by the RIOptimisticProvider implementation to propagate changes back to the data source from which the rowset got its data.
CachedRowSetWriter() - Constructor for class com.sun.rowset.internal.CachedRowSetWriter
 
CachedRowSetX - interface com.sun.sql.rowset.CachedRowSetX.
The extened interface that all implementations of CachedRowSetX must implement.
CachedRowSetXImpl - class com.sun.sql.rowset.CachedRowSetXImpl.
The reference implementation of the CachedRowSetX interface.
CachedRowSetXImpl() - Constructor for class com.sun.sql.rowset.CachedRowSetXImpl
Constructs a default CachedRowSetXImpl object instance.
CachedRowSetXImpl(Hashtable) - Constructor for class com.sun.sql.rowset.CachedRowSetXImpl
Provides a CachedRowSetXImpl instance with the same default properties as as the zero parameter constructor.
cancelRowUpdates() - Method in class com.sun.rowset.CachedRowSetImpl
Rolls back any updates made to the current row of this CachedRowSetImpl object and notifies listeners that a row has changed.
cancelRowUpdates() - Method in class com.sun.rowset.JdbcRowSetImpl
Cancels the updates made to the current row in this ResultSet object and notifies listeners that a row has changed.
cancelRowUpdates() - Method in class com.sun.rowset.JoinRowSetImpl
Rolls back any updates made to the current row of this JoinRowSetImpl object and notifies listeners that a row has changed.
cancelRowUpdates() - Method in class com.sun.rowset.internal.SyncResolverImpl
Rolls back any updates made to the current row of this CachedRowSetImpl object and notifies listeners that a row has changed.
cancelRowUpdates() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
cancelRowUpdates() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
charStream - Variable in class javax.sql.rowset.BaseRowSet
The Reader object that will be returned by the method getCharacterStream, which is specified in the ResultSet interface.
characters(char[], int, int) - Method in class com.sun.rowset.internal.XmlReaderContentHandler
Sets a property, metadata, or data value with the characters in the given array of characters, starting with the array element indicated by start and continuing for length number of characters.
checkState() - Method in class com.sun.rowset.JdbcRowSetImpl
 
clearDeleted() - Method in class com.sun.rowset.internal.Row
Sets the deleted field for this Row object to false.
clearInserted() - Method in class com.sun.rowset.internal.Row
Sets the inserted field for this Row object to false.
clearParameters() - Method in class javax.sql.rowset.BaseRowSet
Clears all of the current parameter values in this RowSet object's internal representation of the parameters to be set in this RowSet object's command when it is executed.
clearUpdated() - Method in class com.sun.rowset.internal.Row
Sets the updated field for this Row object to false, sets all the column values in this Row object's internal array of current values to null, and clears all of the bits in the BitSet object maintained by this Row object.
clearWarnings() - Method in class com.sun.rowset.CachedRowSetImpl
Clears all the warnings reporeted for the CachedRowSetImpl object.
clearWarnings() - Method in class com.sun.rowset.JdbcRowSetImpl
Clears all warnings reported on this rowset's ResultSet object.
clearWarnings() - Method in class com.sun.rowset.JoinRowSetImpl
Throws an UnsupportedOperationException if called.
clearWarnings() - Method in class com.sun.rowset.internal.SyncResolverImpl
Clears all the warnings reporeted for the CachedRowSetImpl object.
clearWarnings() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
clearWarnings() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
clone() - Method in class com.sun.rowset.CachedRowSetImpl
Returns a new RowSet object containing by the same data as this CachedRowSetImpl object.
clone() - Method in class com.sun.rowset.internal.SyncResolverImpl
Returns a new RowSet object containing by the same data as this CachedRowSetImpl object.
clone() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns a new RowSet object containing by the same data as this CachedRowSetXImpl object.
close() - Method in class com.sun.rowset.CachedRowSetImpl
Closes this CachedRowSetImpl objecy and releases any resources it was using.
close() - Method in class com.sun.rowset.JdbcRowSetImpl
Releases this rowset's ResultSet object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed.
close() - Method in class com.sun.rowset.JoinRowSetImpl
Releases the current contents of this rowset, discarding outstanding updates.
close() - Method in class com.sun.rowset.internal.SyncResolverImpl
Closes this CachedRowSetImpl objecy and releases any resources it was using.
close() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
close() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
closePreparedStatement() - Method in interface com.sun.sql.rowset.JdbcRowSetX
Closes the internal PreparedStatement and ResultSet objects.
closePreparedStatement() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
closeResultSet() - Method in interface com.sun.sql.rowset.JdbcRowSetX
Closes the internal ResultSet object.
closeResultSet() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
columnUpdated(int) - Method in class com.sun.rowset.CachedRowSetImpl
Indicates whether the designated column of the current row of this CachedRowSetImpl object has been updated.
columnUpdated(String) - Method in class com.sun.rowset.CachedRowSetImpl
Indicates whether the designated column of the current row of this CachedRowSetImpl object has been updated.
columnUpdated(int) - Method in class com.sun.rowset.JoinRowSetImpl
Indicates whether the designated column of the current row of this JoinRowSetImpl object has been updated.
columnUpdated(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Indicates whether the designated column of the current row of this CachedRowSetImpl object has been updated.
columnUpdated(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Indicates whether the designated column of the current row of this CachedRowSetImpl object has been updated.
columnUpdated(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Indicates whether the designated column in the current row of this CachedRowSet object has been updated.
columnUpdated(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Indicates whether the designated column in the current row of this CachedRowSet object has been updated.
columnUpdated(int) - Method in interface javax.sql.rowset.CachedRowSet
Indicates whether the designated column in the current row of this CachedRowSet object has been updated.
columnUpdated(String) - Method in interface javax.sql.rowset.CachedRowSet
Indicates whether the designated column in the current row of this CachedRowSet object has been updated.
com.sun.rowset - package com.sun.rowset
 
com.sun.rowset.internal - package com.sun.rowset.internal
 
com.sun.rowset.providers - package com.sun.rowset.providers
 
com.sun.sql.rowset - package com.sun.sql.rowset
Provides classes and interfaces for handling result sets returned by databases.
commit() - Method in class com.sun.rowset.CachedRowSetImpl
Commits all changes performed by the acceptChanges() methods
commit() - Method in class com.sun.rowset.JdbcRowSetImpl
Commits all updates in this JdbcRowSet object by wrapping the internal Connection object and calling its commit method.
commit() - Method in class com.sun.rowset.internal.CachedRowSetWriter
 
commit() - Method in class com.sun.rowset.internal.SyncResolverImpl
Commits all changes performed by the acceptChanges() methods
commit() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
commit() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
commit() - Method in interface javax.sql.rowset.CachedRowSet
Each CachedRowSet object's SyncProvider contains a Connection object from the ResultSet or JDBC properties passed to it's constructors.
commit() - Method in interface javax.sql.rowset.JdbcRowSet
Each JdbcRowSet contains a Connection object from the ResultSet or JDBC properties passed to it's constructors.
commit() - Method in interface javax.sql.rowset.spi.TransactionalWriter
Makes permanent all changes that have been performed by the acceptChanges method since the last call to either the commit or rollback methods.
connect() - Method in class com.sun.rowset.JdbcRowSetImpl
 
connect(RowSetInternal) - Method in class com.sun.rowset.internal.CachedRowSetReader
Establishes a connection with the data source for the given RowSet object.
connect() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
createCopy() - Method in class com.sun.rowset.CachedRowSetImpl
Creates a RowSet object that is a deep copy of this CachedRowSetImpl object's data, including constraints.
createCopy() - Method in class com.sun.rowset.internal.SyncResolverImpl
Creates a RowSet object that is a deep copy of this CachedRowSetImpl object's data, including constraints.
createCopy() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Creates a RowSet object that is a deep copy of a CachedRowSet object instance data. In contrast to the RowSet generated from a createShared call, updates made to the copy of the original RowSet must not be visible to original RowSet. Equally any event listeners that are registered with the original RowSet must not have scope over the new RowSet copies. In addition any constraint restrictions established must be maintained.
createCopy() - Method in interface javax.sql.rowset.CachedRowSet
Creates a RowSet object that is a deep copy of a CachedRowSet object instance data.
createCopyNoConstraints() - Method in class com.sun.rowset.CachedRowSetImpl
Creates a CachedRowSet object that is a copy of this CachedRowSetImpl object's data only.
createCopyNoConstraints() - Method in class com.sun.rowset.internal.SyncResolverImpl
Creates a CachedRowSet object that is a copy of this CachedRowSetImpl object's data only.
createCopyNoConstraints() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Creates a RowSet object that is a deep copy of a CachedRowSet object instance data. In contrast to the RowSet generated from a createShared call, updates made to the copy of the original RowSet must not be visible to original RowSet. Equally any event listeners that are registered with the original RowSet must not have scope over the new RowSet copies. In addition any constraint restrictions established must not be maintained.
createCopyNoConstraints() - Method in interface javax.sql.rowset.CachedRowSet
Creates a RowSet object that is a deep copy of a CachedRowSet object instance data.
createCopySchema() - Method in class com.sun.rowset.CachedRowSetImpl
Creates a RowSet object that is a copy of this CachedRowSetImpl object's table structure and the constraints only.
createCopySchema() - Method in class com.sun.rowset.internal.SyncResolverImpl
Creates a RowSet object that is a copy of this CachedRowSetImpl object's table structure and the constraints only.
createCopySchema() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Creates an empty copy of the CachedRowSet object instance. Any copies must not contain any contents but only represent the table structure of the original RowSet. In addition, primary or foreign key constraints set in the originating RowSet must equally enforced in the new empty CachedRowSet. In contrast to the RowSet generated from a createShared call, updates made to the copy of the original RowSet must not be visible to original RowSet.

Applications can form a WebRowSet object instance to export the RowSet schema definition to XML for future use.

createCopySchema() - Method in interface javax.sql.rowset.CachedRowSet
Creates an empty copy of the CachedRowSet object instance.
createInternalUseInstance() - Static method in class com.sun.sql.rowset.CachedRowSetXImpl
used internally by readers and writers
createShared() - Method in class com.sun.rowset.CachedRowSetImpl
Returns a new RowSet object backed by the same data as that of this CachedRowSetImpl object and sharing a set of cursors with it.
createShared() - Method in class com.sun.rowset.internal.SyncResolverImpl
Returns a new RowSet object backed by the same data as that of this CachedRowSetImpl object and sharing a set of cursors with it.
createShared() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns a new RowSet object backed by the same data as that of this CachedRowSet object. In effect, both CachedRowSet objects have a cursor over the same data. As a result, any changes made by a duplicate are visible to the original and to any other duplicates, just as a change made by the original is visible to all of its duplicates. If a duplicate calls a method that changes the underlying data, the method it calls notifies all registered listeners just as it would when it is called by the original CachedRowSet object.

In addition, any RowSet object created by this method will have the same properties as this CachedRowSet object. For example, if this CachedRowSet object is read-only, all of its duplicates will also be read-only. If it is changed to be updatable, the duplicates also become updatable.

NOTE: If multiple threads access RowSet objects created from the createShared() method, the following behavior is specified to preserve shared data integrity: reads and writes of all shared RowSet objects should be made serially between each object and the single underlying tabular structure.

createShared() - Method in interface javax.sql.rowset.CachedRowSet
Returns a new RowSet object backed by the same data as that of this CachedRowSet object.

D

DATASOURCE_DB_LOCK - Static variable in class javax.sql.rowset.spi.SyncProvider
Indicates that a lock is placed on the entire data source that is the source of data for the RowSet object that is using this SyncProvider object.
DATASOURCE_NO_LOCK - Static variable in class javax.sql.rowset.spi.SyncProvider
Indicates that no locks remain on the originating data source.
DATASOURCE_ROW_LOCK - Static variable in class javax.sql.rowset.spi.SyncProvider
Indicates that a lock is placed on the rows that are touched by the original SQL statement used to populate the RowSet object that is using this SyncProvider object.
DATASOURCE_TABLE_LOCK - Static variable in class javax.sql.rowset.spi.SyncProvider
Indicates that a lock is placed on all tables that are touched by the original SQL statement used to populate the RowSet object that is using this SyncProvider object.
DELETE_ROW_CONFLICT - Static variable in interface javax.sql.rowset.spi.SyncResolver
Indicates that a conflict occurred while the RowSet object was attempting to delete a row in the data source.
deleteRow() - Method in class com.sun.rowset.CachedRowSetImpl
Deletes the current row from this CachedRowSetImpl object and notifies listeners registered with this rowset that a row has changed.
deleteRow() - Method in class com.sun.rowset.JdbcRowSetImpl
Deletes the current row from this rowset's ResultSet object and from the underlying database and also notifies listeners that a row has changed.
deleteRow() - Method in class com.sun.rowset.JoinRowSetImpl
Deletes the current row from this JoinRowSetImpl object and notifies listeners registered with this rowset that a row has changed.
deleteRow() - Method in class com.sun.rowset.internal.SyncResolverImpl
Deletes the current row from this CachedRowSetImpl object and notifies listeners registered with this rowset that a row has changed.
deleteRow() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
deleteRow() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 

E

endDocument() - Method in class com.sun.rowset.internal.XmlReaderContentHandler
 
endElement(String, String, String) - Method in class com.sun.rowset.internal.XmlReaderContentHandler
Sets the value for the given element if name is one of the array elements in the fields properties, colDef, or data and this XmlReaderContentHandler object's state is not INITIAL.
error(SAXParseException) - Method in class com.sun.rowset.internal.XmlErrorHandler
 
error(SAXParseException) - Method in class com.sun.rowset.internal.XmlReaderContentHandler
Throws the given SAXParseException object.
errorCounter - Variable in class com.sun.rowset.internal.XmlErrorHandler
 
evaluate(RowSet) - Method in interface javax.sql.rowset.Predicate
This method is typically called a FilteredRowSet object internal methods (not public) that control the RowSet object's cursor moving from row to the next.
evaluate(Object, int) - Method in interface javax.sql.rowset.Predicate
This method is called by a FilteredRowSet object to check whether the value lies between the filtering criterion (or criteria if multiple constraints exist) set using the setFilter() method.
evaluate(Object, String) - Method in interface javax.sql.rowset.Predicate
This method is called by the FilteredRowSet object to check whether the value lies between the filtering criteria set using the setFilter method.
execute(Connection) - Method in class com.sun.rowset.CachedRowSetImpl
Populates this CachedRowSetImpl object with data, using the given connection to produce the result set from which data will be read.
execute() - Method in class com.sun.rowset.CachedRowSetImpl
Populates this CachedRowSetImpl object with data.
execute() - Method in class com.sun.rowset.JdbcRowSetImpl
Creates the internal ResultSet object for which this JdbcRowSet object is a wrapper, effectively making the result set a JavaBeans component.
execute() - Method in class com.sun.rowset.JoinRowSetImpl
Populates this JoinRowSetImpl object with data.
execute(Connection) - Method in class com.sun.rowset.JoinRowSetImpl
Populates this JoinRowSetImpl object with data, using the given connection to produce the result set from which data will be read.
execute(Connection) - Method in class com.sun.rowset.internal.SyncResolverImpl
Populates this CachedRowSetImpl object with data, using the given connection to produce the result set from which data will be read.
execute() - Method in class com.sun.rowset.internal.SyncResolverImpl
Populates this CachedRowSetImpl object with data.
execute(Connection) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Populates this CachedRowSet object with data, using the given connection to produce the result set from which the data will be read. This method should close any database connections that it creates to ensure that this CachedRowSet object is disconnected except when it is reading data from its data source or writing data to its data source.

The reader for this CachedRowSet object will use conn to establish a connection to the data source so that it can execute the rowset's command and read data from the the resulting ResultSet object into this CachedRowSet object. This method also closes conn after it has populated this CachedRowSet object.

If this method is called when an implementation has already been populated, the contents and the metadata are (re)set. Also, if this method is called before the method acceptChanges has been called to commit outstanding updates, those updates are lost.

execute() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
execute() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
execute(Connection) - Method in interface javax.sql.rowset.CachedRowSet
Populates this CachedRowSet object with data, using the given connection to produce the result set from which the data will be read.

F

FULL_JOIN - Static variable in interface javax.sql.rowset.JoinRowSet
An ANSI-style JOIN providing a a full JOIN.
FilteredRowSet - interface javax.sql.rowset.FilteredRowSet.
The standard interface that all standard implementations of FilteredRowSet must implement.
FilteredRowSetImpl - class com.sun.rowset.FilteredRowSetImpl.
The standard implementation of the FilteredRowSet interface.
FilteredRowSetImpl() - Constructor for class com.sun.rowset.FilteredRowSetImpl
Construct a FilteredRowSet
FilteredRowSetImpl(Hashtable) - Constructor for class com.sun.rowset.FilteredRowSetImpl
Construct a FilteredRowSet with a specified synchronization provider.
fatalError(SAXParseException) - Method in class com.sun.rowset.internal.XmlErrorHandler
 
findColumn(String) - Method in class com.sun.rowset.CachedRowSetImpl
Maps the given column name for one of this CachedRowSetImpl object's columns to its column number.
findColumn(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Maps the given JdbcRowSetImpl column name to its JdbcRowSetImpl column index and reflects this on the internal ResultSet object.
findColumn(String) - Method in class com.sun.rowset.JoinRowSetImpl
Returns the index of the column whose name is columnName.
findColumn(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Maps the given column name for one of this CachedRowSetImpl object's columns to its column number.
findColumn(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
findColumn(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
first() - Method in class com.sun.rowset.CachedRowSetImpl
Moves this CachedRowSetImpl object's cursor to the first row and returns true if the operation was successful.
first() - Method in class com.sun.rowset.JdbcRowSetImpl
Moves the cursor to the first row in this rowset's ResultSet object.
first() - Method in class com.sun.rowset.JoinRowSetImpl
Moves this JoinRowSetImpl object's cursor to the first row and returns true if the operation was successful.
first() - Method in class com.sun.rowset.internal.SyncResolverImpl
Moves this CachedRowSetImpl object's cursor to the first row and returns true if the operation was successful.
first() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
first() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 

G

GRADE_CHECK_ALL_AT_COMMIT - Static variable in class javax.sql.rowset.spi.SyncProvider
Indicates a high level optimistic synchronization grade with respect to the originating data source.
GRADE_CHECK_MODIFIED_AT_COMMIT - Static variable in class javax.sql.rowset.spi.SyncProvider
Indicates a low level optimistic synchronization grade with respect to the originating data source.
GRADE_LOCK_WHEN_LOADED - Static variable in class javax.sql.rowset.spi.SyncProvider
Indicates the most pessimistic synchronization grade with respect to the originating data source.
GRADE_LOCK_WHEN_MODIFIED - Static variable in class javax.sql.rowset.spi.SyncProvider
Indicates a pessimistic synchronization grade with respect to the originating data source.
GRADE_NONE - Static variable in class javax.sql.rowset.spi.SyncProvider
Indicates that no synchronization with the originating data source is provided.
getArray(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as an Array object in the Java programming language.
getArray(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as an Array object in the Java programming langugage.
getArray(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the value of the designated column in the current row of this rowset's ResultSet object as an Array object.
getArray(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the value of the designated column in the current row of this rowset's ResultSet object as an Array object.
getArray(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in this JoinRowSetImpl object as an Array object in the Java programming lanugage.
getArray(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in this JoinRowSetImpl object as an Array object in the Java programming lanugage.
getArray(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as an Array object in the Java programming language.
getArray(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as an Array object in the Java programming langugage.
getArray(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getArray(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getArray(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getArray(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getArray() - Method in class javax.sql.rowset.serial.SerialArray
Returns a new array that is a copy of this SerialArray object.
getArray(Map) - Method in class javax.sql.rowset.serial.SerialArray
Returns a new array that is a copy of this SerialArray object, using the given type map for the custom mapping of each element when the elements are SQL UDTs.
getArray(long, int) - Method in class javax.sql.rowset.serial.SerialArray
Returns a new array that is a copy of a slice of this SerialArray object, starting with the element at the given index and containing the given number of consecutive elements.
getArray(long, int, Map) - Method in class javax.sql.rowset.serial.SerialArray
Returns a new array that is a copy of a slice of this SerialArray object, starting with the element at the given index and containing the given number of consecutive elements.
getAsciiStream(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.io.InputStream object.
getAsciiStream(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.io.InputStream object.
getAsciiStream(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a stream of ASCII characters.
getAsciiStream(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a stream of ASCII characters.
getAsciiStream(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a java.sql.Timestamp object.
getAsciiStream(String) - Method in class com.sun.rowset.JoinRowSetImpl
This method is not supported, and it will throw an UnsupportedOperationException if it is called.
getAsciiStream(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.io.InputStream object.
getAsciiStream(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.io.InputStream object.
getAsciiStream(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getAsciiStream(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getAsciiStream(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getAsciiStream(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getAsciiStream() - Method in class javax.sql.rowset.serial.SerialClob
Retrieves a CLOB value designated by this SerialClob object as an ascii stream.
getAttributes() - Method in class javax.sql.rowset.serial.SerialStruct
Retrieves an array of Object values containing the attributes of the SQL structured type that this SerialStruct object represents.
getAttributes(Map) - Method in class javax.sql.rowset.serial.SerialStruct
Retrieves the attributes for the SQL structured type that this SerialStruct represents as an array of Object values, using the given type map for custom mapping if appropriate.
getAutoCommit() - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the auto-commit status with this JdbcRowSet.
getAutoCommit() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getAutoCommit() - Method in interface javax.sql.rowset.JdbcRowSet
Each JdbcRowSet contains a Connection object from the original ResultSet or JDBC properties passed to it.
getBaseType() - Method in class javax.sql.rowset.serial.SerialArray
Retrieves the SQL type of the elements in this SerialArray object.
getBaseTypeName() - Method in class javax.sql.rowset.serial.SerialArray
Retrieves the DBMS-specific type name for the elements in this SerialArray object.
getBaseTypeName() - Method in class javax.sql.rowset.serial.SerialRef
Returns a string describing the base type name of the Ref.
getBigDecimal(int, int) - Method in class com.sun.rowset.CachedRowSetImpl
Deprecated.  
getBigDecimal(String, int) - Method in class com.sun.rowset.CachedRowSetImpl
Deprecated. Use the getBigDecimal(String columnName) method instead
getBigDecimal(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.math.BigDecimal object.
getBigDecimal(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.math.BigDecimal object.
getBigDecimal(int, int) - Method in class com.sun.rowset.JdbcRowSetImpl
Deprecated.  
getBigDecimal(String, int) - Method in class com.sun.rowset.JdbcRowSetImpl
Deprecated.  
getBigDecimal(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a java.math.BigDecimal with full precision.
getBigDecimal(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a java.math.BigDecimal with full precision.
getBigDecimal(int, int) - Method in class com.sun.rowset.JoinRowSetImpl
Deprecated.  
getBigDecimal(String, int) - Method in class com.sun.rowset.JoinRowSetImpl
Deprecated. use the method getBigDecimal(String columnName) instead
getBigDecimal(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a java.math.BigDecimal object.
getBigDecimal(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a java.math.BigDecimal object.
getBigDecimal(int, int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Deprecated.  
getBigDecimal(String, int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Deprecated. Use the getBigDecimal(String columnName) method instead
getBigDecimal(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.math.BigDecimal object.
getBigDecimal(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.math.BigDecimal object.
getBigDecimal(int, int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getBigDecimal(String, int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getBigDecimal(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getBigDecimal(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getBigDecimal(int, int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getBigDecimal(String, int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getBigDecimal(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getBigDecimal(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getBinaryStream(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.io.InputStream object.
getBinaryStream(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.io.InputStream object.
getBinaryStream(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of a column in the current row as a stream of the value of the designated column in the current row of this rowset's ResultSet object as a binary stream of uninterpreted bytes.
getBinaryStream(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a stream of uninterpreted bytes.
getBinaryStream(int) - Method in class com.sun.rowset.JoinRowSetImpl
A column value can be retrieved as a stream of uninterpreted bytes and then read in chunks from the stream.
getBinaryStream(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value stored in the designated column of the current row as a java.io.InputStream object.
getBinaryStream(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.io.InputStream object.
getBinaryStream(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.io.InputStream object.
getBinaryStream(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getBinaryStream(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getBinaryStream(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getBinaryStream(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getBinaryStream() - Method in class javax.sql.rowset.serial.SerialBlob
Returns this SerialBlob object as an input stream.
getBlob(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as a Blob object in the Java programming language.
getBlob(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as a Blob object in the Java programming language.
getBlob(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the value of the designated column in the current row of this rowset's ResultSet object as a Blob object.
getBlob(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the value of the designated column in the current row of this rowset's ResultSet object as a Blob object.
getBlob(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in this JoinRowSetImpl object as a Blob object in the Java programming lanugage.
getBlob(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in this JoinRowSetImpl object as a Blob object in the Java programming lanugage.
getBlob(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as a Blob object in the Java programming language.
getBlob(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as a Blob object in the Java programming language.
getBlob(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getBlob(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getBlob(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getBlob(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getBoolean(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a boolean value.
getBoolean(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value stored in the designated column of the current row as a boolean value.
getBoolean(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a boolean.
getBoolean(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a boolean.
getBoolean(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a boolean value.
getBoolean(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value stored in the designated column of the current row as a boolean value.
getBoolean(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a boolean value.
getBoolean(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value stored in the designated column of the current row as a boolean value.
getBoolean(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getBoolean(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getBoolean(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getBoolean(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getByte(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a byte value.
getByte(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value stored in the designated column of the current row as a byte value.
getByte(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a byte.
getByte(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a byte.
getByte(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a byte value.
getByte(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value stored in the designated column of the current row as a byte value.
getByte(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a byte value.
getByte(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value stored in the designated column of the current row as a byte value.
getByte(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getByte(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getByte(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getByte(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getBytes(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a byte array value.
getBytes(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value stored in the designated column of the current row as a byte array.
getBytes(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a byte array in the Java programming language.
getBytes(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a byte array in the Java programming language.
getBytes(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a byte array value.
getBytes(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value stored in the designated column of the current row as a byte array.
getBytes(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a byte array value.
getBytes(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value stored in the designated column of the current row as a byte array.
getBytes(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getBytes(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getBytes(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getBytes(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getBytes(long, int) - Method in class javax.sql.rowset.serial.SerialBlob
Copies the specified number of bytes, starting at the given position, from this SerialBlob object to another array of bytes.
getCatalogName() - Method in interface com.sun.sql.rowset.CachedRowSetX
Returns the catalog in which the table referred to by the tableName property resides.
getCatalogName() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns the catalog in which the table referred to by the tableName property resides.

getCatalogName(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Retrieves the catalog name of the table from which the value in the designated column was derived.
getCharacterStream(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value stored in the designated column of the current row as a java.io.Reader object.
getCharacterStream(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value stored in the designated column of the current row as a java.io.Reader object.
getCharacterStream(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a java.io.Reader object.
getCharacterStream(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a java.io.Reader object.
getCharacterStream(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value stored in the designated column of the current row as a java.io.Reader object.
getCharacterStream(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value stored in the designated column of the current row as a java.io.Reader object.
getCharacterStream(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value stored in the designated column of the current row as a java.io.Reader object.
getCharacterStream(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value stored in the designated column of the current row as a java.io.Reader object.
getCharacterStream(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getCharacterStream(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getCharacterStream(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getCharacterStream(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getCharacterStream() - Method in class javax.sql.rowset.serial.SerialClob
Returns this SerialClob object's data as a stream of Unicode characters.
getClob(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as a Clob object in the Java programming language.
getClob(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as a Clob object in the Java programming language.
getClob(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the value of the designated column in the current row of this rowset's ResultSet object as a Clob object.
getClob(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the value of the designated column in the current row of this rowset's ResultSet object as a Clob object.
getClob(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in this JoinRowSetImpl object as a Clob object in the Java programming lanugage.
getClob(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in this JoinRowSetImpl object as a Clob object in the Java programming lanugage.
getClob(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as a Clob object in the Java programming language.
getClob(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as a Clob object in the Java programming language.
getClob(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getClob(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getClob(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getClob(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getCloseConnection() - Method in class com.sun.rowset.internal.CachedRowSetReader
Assists in determining whether the current connection was created by this CachedRowSet to ensure incorrect connections are not prematurely terminated.
getColUpdated(int) - Method in class com.sun.rowset.internal.Row
Indicates whether the designated column of this Row object has been changed.
getColumnCatalogNames() - Method in interface com.sun.sql.rowset.CachedRowSetX
Returns an array of String.
getColumnCatalogNames(int) - Method in interface com.sun.sql.rowset.CachedRowSetX
Returns a String which contains the catalog name set for the column or null.
getColumnCatalogNames() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns an array of String. If setColumnCatalogNames was never called, null is returned, else the value set when calling setColumnCatalogNames{/code> is returned. See setColumnCatalogNames for details.

Note, the column is zero based whereas most jdbc calls are one based.

Note: This method is called by com.sun.sql.rowset.internal.CachedRowSetXWriter.

getColumnCatalogNames(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns a String which contains the catalog name set for the column or null.

Note, the column is zero based whereas most jdbc calls are one based.

getColumnClassName(int) - Method in class com.sun.sql.rowset.RowSetMetaDataXImpl
 
getColumnClassName(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Retrieves the fully-qualified name of the class in the Java programming language to which a value in the designated column will be mapped.
getColumnCount() - Method in class javax.sql.rowset.RowSetMetaDataImpl
Retrieves the number of columns in the RowSet object for which this RowSetMetaDataImpl object was created.
getColumnDisplaySize(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Retrieves the normal maximum width in chars of the designated column.
getColumnLabel(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Retrieves the the suggested column title for the designated column for use in printouts and displays.
getColumnName(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Retrieves the name of the designated column.
getColumnNames() - Method in interface com.sun.sql.rowset.CachedRowSetX
Returns an array of String.
getColumnNames(int) - Method in interface com.sun.sql.rowset.CachedRowSetX
Returns a String which contains the column name set for the column or null.
getColumnNames() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns an array of String. If setColumnNames was never called, null is returned, else the value set when calling setColumnNames{/code> is returned. See setColumnNames for details.

Note, the column is zero based whereas most jdbc calls are one based.

Note: This method is called by com.sun.sql.rowset.internal.CachedRowSetXWriter.

getColumnNames(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns a String which contains the column name set for the column or null.

Note, the column is zero based whereas most jdbc calls are one based.

getColumnObject(int) - Method in class com.sun.rowset.internal.BaseRow
Retrieves the array element at the given index, which is the original value of column number idx in this row.
getColumnObject(int) - Method in class com.sun.rowset.internal.InsertRow
Retrieves the value of the designated column in this InsertRow object.
getColumnObject(int) - Method in class com.sun.rowset.internal.Row
Retrieves the column value stored in the designated column of this Row object.
getColumnSchemaNames() - Method in interface com.sun.sql.rowset.CachedRowSetX
Returns an array of String.
getColumnSchemaNames(int) - Method in interface com.sun.sql.rowset.CachedRowSetX
Returns a String which contains the schema name set for the column or null.
getColumnSchemaNames() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns an array of String. If setColumnSchemaNames was never called, null is returned, else the value set when calling setColumnSchemaNames{/code> is returned. See setColumnSchemaNames for details.

Note, the column is zero based whereas most jdbc calls are one based.

Note: This method is called by com.sun.sql.rowset.internal.CachedRowSetXWriter.

getColumnSchemaNames(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns a String which contains the schema name set for the column or null.

Note, the column is zero based whereas most jdbc calls are one based.

getColumnTableNames() - Method in interface com.sun.sql.rowset.CachedRowSetX
Returns an array of String.
getColumnTableNames(int) - Method in interface com.sun.sql.rowset.CachedRowSetX
Returns a String which contains the table name set for the column or null.
getColumnTableNames() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns an array of String. If setColumnTableNames was never called, null is returned, else the value set when calling setColumnTableNames{/code> is returned. See setColumnTableNames for details.

Note, the column is zero based whereas most jdbc calls are one based.

Note: This method is called by com.sun.sql.rowset.internal.CachedRowSetXWriter.

getColumnTableNames(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns a String which contains the table name set for the column or null.

Note, the column is zero based whereas most jdbc calls are one based.

getColumnType(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Retrieves the type code (one of the java.sql.Types constants) for the SQL type of the value stored in the designated column.
getColumnTypeName(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Retrieves the DBMS-specific type name for values stored in the designated column.
getCommand() - Method in class javax.sql.rowset.BaseRowSet
Retrieves the SQL query that is the command for this RowSet object.
getConcurrency() - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the concurrency mode of this rowset's ResultSet object.
getConcurrency() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getConcurrency() - Method in class javax.sql.rowset.BaseRowSet
Returns the concurrency for this RowSet object.
getConflictValue(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value in the designated column in the current row of this SyncResolver object, which is the value that caused a conflict.
getConflictValue(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value in the designated column in the current row of this SyncResolver object, which is the value that caused a conflict.
getConflictValue(int) - Method in interface javax.sql.rowset.spi.SyncResolver
Retrieves the value in the designated column in the current row of this SyncResolver object, which is the value in the data source that caused a conflict.
getConflictValue(String) - Method in interface javax.sql.rowset.spi.SyncResolver
Retrieves the value in the designated column in the current row of this SyncResolver object, which is the value in the data source that caused a conflict.
getConnection() - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the Connection object passed to this CachedRowSetImpl object.
getConnection() - Method in class com.sun.rowset.JdbcRowSetImpl
Gets this JdbcRowSet object's Connection property
getConnection() - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the Connection object passed to this CachedRowSetImpl object.
getConnection() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Retrieves the Connection object passed to this CachedRowSetXImpl object.
getCurrentRow() - Method in class com.sun.rowset.CachedRowSetImpl
Returns the insert row or the current row of this CachedRowSetImplobject.
getCurrentRow() - Method in class com.sun.rowset.internal.Row
Returns the row on which the cursor is positioned.
getCurrentRow() - Method in class com.sun.rowset.internal.SyncResolverImpl
Returns the insert row or the current row of this CachedRowSetImplobject.
getCurrentRow() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns the insert row or the current row of this CachedRowSetXImplobject.
getCursorName() - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the name of the SQL cursor used by this CachedRowSetImpl object.
getCursorName() - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the name of the SQL cursor used by this rowset's ResultSet object.
getCursorName() - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the name of the SQL cursor used by this JoinRowSetImpl object.
getCursorName() - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the name of the SQL cursor used by this CachedRowSetImpl object.
getCursorName() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getCursorName() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getDataSourceLock() - Method in class com.sun.rowset.providers.RIOptimisticProvider
Returns the active data source lock severity in this reference implementation of the SyncProvider abstract class.
getDataSourceLock() - Method in class com.sun.rowset.providers.RIXMLProvider
Returns the default DATASOURCE_LOCK behavior of this reader
getDataSourceLock() - Method in class javax.sql.rowset.spi.SyncProvider
Returns the current data source lock severity level active in this SyncProvider implementation.
getDataSourceName() - Method in class javax.sql.rowset.BaseRowSet
Returns the logical name that when supplied to a naming service that uses the Java Naming and Directory Interface (JNDI) API, will retrieve a javax.sql.DataSource object.
getDatabaseMetaData() - Method in class com.sun.rowset.JdbcRowSetImpl
Retrieves the DatabaseMetaData associated with the connection handle associated this this JdbcRowSet object.
getDatabaseMetaData() - Method in interface com.sun.sql.rowset.JdbcRowSetX
Retrieves a DatabaseMetaData object that contains metadata about the database to which this JdbcRowSetX object references.
getDatabaseMetaData() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getDatalink() - Method in class javax.sql.rowset.serial.SerialDatalink
Returns a new URL that is a copy of this SerialDatalink object
getDate(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.sql.Date object.
getDate(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value stored in the designated column of the current row as a java.sql.Date object.
getDate(int, Calendar) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.sql.Date object, using the given Calendar object to construct an appropriate millisecond value for the date.
getDate(String, Calendar) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.sql.Date object, using the given Calendar object to construct an appropriate millisecond value for the date.
getDate(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a java.sql.Date object in the Java programming language.
getDate(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a java.sql.Date object in the Java programming language.
getDate(int, Calendar) - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the value of the designated column in the current row of this rowset's ResultSet object as a java.sql.Date object.
getDate(String, Calendar) - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the value of the designated column in the current row of this rowset's ResultSet object as a java.sql.Date object.
getDate(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a java.sql.Date object.
getDate(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value stored in the designated column of the current row as a java.sql.Date object.
getDate(int, Calendar) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a java.sql.Date object, using the given Calendar object to construct an appropriate millisecond value for the date.
getDate(String, Calendar) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a java.sql.Date object, using the given Calendar object to construct an appropriate millisecond value for the date.
getDate(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.sql.Date object.
getDate(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value stored in the designated column of the current row as a java.sql.Date object.
getDate(int, Calendar) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.sql.Date object, using the given Calendar object to construct an appropriate millisecond value for the date.
getDate(String, Calendar) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.sql.Date object, using the given Calendar object to construct an appropriate millisecond value for the date.
getDate(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getDate(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getDate(int, Calendar) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getDate(String, Calendar) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getDate(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getDate(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getDate(int, Calendar) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getDate(String, Calendar) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getDeleted() - Method in class com.sun.rowset.internal.Row
Retrieves the value of this Row object's deleted field, which will be true if one or more of its columns has been deleted.
getDouble(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a double value.
getDouble(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value stored in the designated column of the current row of this CachedRowSetImpl object as a double value.
getDouble(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a double.
getDouble(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a double.
getDouble(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a double value.
getDouble(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value stored in the designated column of the current row as a double value.
getDouble(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a double value.
getDouble(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value stored in the designated column of the current row of this CachedRowSetImpl object as a double value.
getDouble(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getDouble(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getDouble(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getDouble(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getEscapeProcessing() - Method in class javax.sql.rowset.BaseRowSet
Ascertains whether escape processing is enabled for this RowSet object.
getFetchDirection() - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the fetch direction for this ResultSet object.
getFetchDirection() - Method in class com.sun.sql.rowset.BaseRowSetX
Retrieves this RowSet object's current setting for the fetch direction.
getFetchDirection() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getFetchDirection() - Method in class javax.sql.rowset.BaseRowSet
Retrieves this RowSet object's current setting for the fetch direction.
getFetchSize() - Method in class com.sun.sql.rowset.BaseRowSetX
Returns the fetch size for this RowSet object.
getFetchSize() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getFetchSize() - Method in class javax.sql.rowset.BaseRowSet
Returns the fetch size for this RowSet object.
getFields() - Method in class javax.sql.rowset.serial.SerialJavaObject
Returns an array of Field objects that contains each field of the object that this helper class is serializing.
getFilter() - Method in class com.sun.rowset.FilteredRowSetImpl
Retrieve the filter active for this FilteredRowSet
getFilter() - Method in interface javax.sql.rowset.FilteredRowSet
Retrieve the active filter for this FilteredRowSet object.
getFloat(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a float value.
getFloat(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value stored in the designated column of the current row as a float value.
getFloat(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a float.
getFloat(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a float.
getFloat(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a float value.
getFloat(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value stored in the designated column of the current row as a float value.
getFloat(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a float value.
getFloat(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value stored in the designated column of the current row as a float value.
getFloat(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getFloat(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getFloat(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getFloat(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getHoldability() - Method in interface com.sun.sql.rowset.JdbcRowSetX
Retrieves the current holdability of this JdbcRowSetX object
getHoldability() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getInsertableColumns() - Method in interface com.sun.sql.rowset.CachedRowSetX
Returns an array of boolean{/code>.
getInsertableColumns(int) - Method in interface com.sun.sql.rowset.CachedRowSetX
Returns a boolean{/code> of true if the column should be inserted when when adding rows or null.
getInsertableColumns() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns an array of boolean{/code>. If setInsertableColumns was never called, null is returned, else the value set when calling setInsertableColumns{/code> is returned. See setInsertableColumns for details.

Note, the column is zero based whereas most jdbc calls are one based.

Note: This method is called by com.sun.sql.rowset.internal.CachedRowSetXWriter.

getInsertableColumns(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns a boolean{/code> of true if the column should be inserted when when adding rows or null.

Note, the column is zero based whereas most jdbc calls are one based.

getInserted() - Method in class com.sun.rowset.internal.Row
Retrieves the value of this Row object's inserted field, which will be true if this row has been inserted.
getInstance(String) - Static method in class javax.sql.rowset.spi.SyncFactory
Returns the SyncProvider instance identified by providerID.
getInt(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as an int value.
getInt(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value stored in the designated column of the current row as an int value.
getInt(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as an int.
getInt(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as an int.
getInt(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a short value.
getInt(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value stored in the designated column of the current row as an int value.
getInt(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as an int value.
getInt(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value stored in the designated column of the current row as an int value.
getInt(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getInt(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getInt(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getInt(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getJoinType() - Method in class com.sun.rowset.JoinRowSetImpl
Returns the last set SQL JOIN type in this JoinRowSetImpl object
getJoinType() - Method in interface javax.sql.rowset.JoinRowSet
Returns a int describing the set SQL JOIN type governing this JoinRowSet instance.
getKeyColumns() - Method in class com.sun.rowset.CachedRowSetImpl
Returns the columns that make a key to uniquely identify a row in this CachedRowSetImpl object.
getKeyColumns() - Method in class com.sun.rowset.JoinRowSetImpl
Returns the columns that make a key to uniquely identify a row in this JoinRowSetImpl object.
getKeyColumns() - Method in class com.sun.rowset.internal.SyncResolverImpl
Returns the columns that make a key to uniquely identify a row in this CachedRowSetImpl object.
getKeyColumns() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getKeyColumns() - Method in interface javax.sql.rowset.CachedRowSet
Returns an array containing one or more column numbers indicating the columns that form a key that uniquely identifies a row in this CachedRowSet object.
getLogger() - Static method in class javax.sql.rowset.spi.SyncFactory
Returns the logging object for applications to retrieve synchronization events posted by SyncProvider implementations.
getLong(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a long value.
getLong(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value stored in the designated column of the current row as a long value.
getLong(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a long.
getLong(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a long.
getLong(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a long value.
getLong(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value stored in the designated column of the current row as a long value.
getLong(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a long value.
getLong(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value stored in the designated column of the current row as a long value.
getLong(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getLong(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getLong(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getLong(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getMatchColumnIndexes() - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the column id as int array that was set using setMatchColumn(int []) for this rowset.
getMatchColumnIndexes() - Method in class com.sun.rowset.JdbcRowSetImpl
Retrieves the column id as int array that was set using setMatchColumn(int []) for this rowset.
getMatchColumnIndexes() - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the column id as int array that was set using setMatchColumn(int []) for this rowset.
getMatchColumnIndexes() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getMatchColumnIndexes() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
Retrieves the column id as int array that was set using setMatchColumn(int []) for this rowset.
getMatchColumnIndexes() - Method in interface javax.sql.rowset.Joinable
Retrieves the index of the match column that was set for this RowSet object with the method setMatchColumn(int columnIdx).
getMatchColumnNames() - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the column name as String array that was set using setMatchColumn(String []) for this rowset.
getMatchColumnNames() - Method in class com.sun.rowset.JdbcRowSetImpl
Retrieves the column name as String array that was set using setMatchColumn(String []) for this rowset.
getMatchColumnNames() - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the column name as String array that was set using setMatchColumn(String []) for this rowset.
getMatchColumnNames() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getMatchColumnNames() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
Retrieves the column name as String array that was set using setMatchColumn(String []) for this rowset.
getMatchColumnNames() - Method in interface javax.sql.rowset.Joinable
Retrieves the name of the match column that was set for this RowSet object with the method setMatchColumn(String columnName).
getMaxFieldSize() - Method in class javax.sql.rowset.BaseRowSet
Retrieves the maximum number of bytes that can be used for a column value in this RowSet object.
getMaxRows() - Method in class com.sun.sql.rowset.BaseRowSetX
Retrieves the maximum number of rows that this RowSet object may contain.
getMaxRows() - Method in class javax.sql.rowset.BaseRowSet
Retrieves the maximum number of rows that this RowSet object may contain.
getMetaData() - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves a ResultSetMetaData object instance that contains information about the CachedRowSet object.
getMetaData() - Method in class com.sun.rowset.JdbcRowSetImpl
Retrieves the number, types and properties of this rowset's ResultSet object's columns.
getMetaData() - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the ResultSetMetaData object that contains information about this CachedRowsSet object.
getMetaData() - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves a ResultSetMetaData object instance that contains information about the CachedRowSet object.
getMetaData() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getMetaData() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
Retrieves the number, types and properties of this rowset's ResultSet object's columns.
getNextWarning() - Method in class javax.sql.rowset.RowSetWarning
Retrieves the warning chained to this RowSetWarning object.
getObject(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as an Object value.
getObject(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as an Object value.
getObject(int, Map) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as an Object in the Java programming language, using the given java.util.Map object to custom map the value if appropriate.
getObject(String, Map) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as an Object in the Java programming language, using the given java.util.Map object to custom map the value if appropriate.
getObject(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as an Object.
getObject(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as an Object.
getObject(int, Map) - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the value of the designated column in the current row of this rowset's ResultSet object as an Object.
getObject(String, Map) - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the value of the designated column in the current row of this rowset's ResultSet object as an Object.
getObject(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as an Object value.
getObject(int, Map) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as an Object value.
getObject(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as an Object value.
getObject(String, Map) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in this JoinRowSetImpl object as an Object in the Java programming lanugage, using the given java.util.Map object to custom map the value if appropriate.
getObject(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as an Object value.
getObject(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as an Object value.
getObject(int, Map) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as an Object in the Java programming language, using the given java.util.Map object to custom map the value if appropriate.
getObject(String, Map) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as an Object in the Java programming language, using the given java.util.Map object to custom map the value if appropriate.
getObject(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getObject(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getObject(int, Map) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getObject(String, Map) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getObject(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getObject(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getObject(int, Map) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getObject(String, Map) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getObject() - Method in class javax.sql.rowset.serial.SerialJavaObject
Returns an Object that is a copy of this SerialJavaObject object.
getObject(Map) - Method in class javax.sql.rowset.serial.SerialRef
Returns an object mapped according to the supplied type mapping from the resolved Ref reference.
getObject() - Method in class javax.sql.rowset.serial.SerialRef
Returns an object resolved from the stored Ref reference.
getOrigRow() - Method in class com.sun.rowset.internal.BaseRow
Retrieves the values that this row contained immediately prior to its last modification.
getOriginal() - Method in class com.sun.rowset.CachedRowSetImpl
Returns a result set containing the original value of the rowset.
getOriginal() - Method in class com.sun.rowset.JoinRowSetImpl
 
getOriginal() - Method in class com.sun.rowset.internal.SyncResolverImpl
Returns a result set containing the original value of the rowset.
getOriginal() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getOriginal() - Method in interface javax.sql.rowset.CachedRowSet
Returns a ResultSet object containing the original value of this CachedRowSet object.
getOriginalRow() - Method in class com.sun.rowset.CachedRowSetImpl
Returns a result set containing the original value of the current row only.
getOriginalRow() - Method in class com.sun.rowset.JoinRowSetImpl
Returns a result set containing the original value of the rowset.
getOriginalRow() - Method in class com.sun.rowset.internal.SyncResolverImpl
Returns a result set containing the original value of the current row only.
getOriginalRow() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getOriginalRow() - Method in interface javax.sql.rowset.CachedRowSet
Returns a ResultSet object containing the original value for the current row only of this CachedRowSet object.
getPageSize() - Method in class com.sun.rowset.CachedRowSetImpl
This is the getter function for the size of the page.
getPageSize() - Method in class com.sun.rowset.internal.SyncResolverImpl
This is the getter function for the size of the page.
getPageSize() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getPageSize() - Method in interface javax.sql.rowset.CachedRowSet
Returns the page-size for the CachedRowSet object
getParameterMetaData() - Method in class com.sun.rowset.JdbcRowSetImpl
Retrieves the ParameterMetaData associated with the connection handle associated this this JdbcRowSet object.
getParameterMetaData() - Method in interface com.sun.sql.rowset.JdbcRowSetX
Retrieves the number, types and properties of this JdbcRowSetX object's parameters.
getParameterMetaData() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getParams() - Method in class javax.sql.rowset.BaseRowSet
Retrieves an array containing the parameter values (both Objects and primitives) that have been set for this RowSet object's command and throws an SQLException object if all parameters have not been set.
getPassword() - Method in class javax.sql.rowset.BaseRowSet
Returns the password used to create a database connection for this RowSet object.
getPrecision(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Retrieves the total number of digits for values stored in the designated column.
getPreparedStatement() - Method in class com.sun.rowset.JdbcRowSetImpl
Gets this JdbcRowSet object's PreparedStatement property
getPreparedStatement() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getPrintStatements() - Method in interface com.sun.sql.rowset.CachedRowSetX
Returns the printStatements property.
getPrintStatements() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns the printStatements property.
getProviderGrade() - Method in class com.sun.rowset.providers.RIOptimisticProvider
Returns the SyncProvider grade of synchronization that RowSet objects can expect when using this implementation.
getProviderGrade() - Method in class com.sun.rowset.providers.RIXMLProvider
Returns the SyncProvider grade of syncrhonization that RowSet object instances can expect when using this implementation.
getProviderGrade() - Method in class javax.sql.rowset.spi.SyncProvider
Returns a constant indicating the grade of synchronization a RowSet object can expect from this SyncProvider object.
getProviderID() - Method in class com.sun.rowset.providers.RIOptimisticProvider
Returns the 'javax.sql.rowset.providers.RIOptimisticProvider' provider identification string.
getProviderID() - Method in class com.sun.rowset.providers.RIXMLProvider
Returns "javax.sql.rowset.providers.RIXMLProvider", which is the fully qualified class name of this provider implementation.
getProviderID() - Method in class javax.sql.rowset.spi.SyncProvider
Returns the unique identifier for this SyncProvider object.
getQueryTimeout() - Method in class javax.sql.rowset.BaseRowSet
Retrieves the maximum number of seconds the driver will wait for a query to execute.
getReader() - Method in class com.sun.rowset.internal.CachedRowSetWriter
Gets the reader for this writer.
getRef(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as a Ref object in the Java programming language.
getRef(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as a Ref object in the Java programming language.
getRef(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the value of the designated column in the current row of this rowset's ResultSet object as a Ref object.
getRef(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the value of the designated column in the current row of this rowset's ResultSet object as a Ref object.
getRef(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in this JoinRowSetImpl object as a Ref object in the Java programming lanugage.
getRef(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in this JoinRowSetImpl object as a Ref object in the Java programming lanugage.
getRef(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as a Ref object in the Java programming language.
getRef(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as a Ref object in the Java programming language.
getRef(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getRef(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getRef(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getRef(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getRegisteredProviders() - Static method in class javax.sql.rowset.spi.SyncFactory
Returns an Enumeration of currently registered synchronization providers.
getResultSet() - Method in class com.sun.rowset.JdbcRowSetImpl
Gets this JdbcRowSet object's ResultSet property
getResultSet(long, int) - Method in class javax.sql.rowset.serial.SerialArray
Retrieves a ResultSet object holding the elements of the subarray that starts at index index and contains up to count successive elements.
getResultSet(Map) - Method in class javax.sql.rowset.serial.SerialArray
Retrieves a ResultSet object that contains all of the elements of the SQL ARRAY value represented by this SerialArray object.
getResultSet() - Method in class javax.sql.rowset.serial.SerialArray
Retrieves a ResultSet object that contains all of the elements in the ARRAY value that this SerialArray object represents.
getResultSet(long, int, Map) - Method in class javax.sql.rowset.serial.SerialArray
Retrieves a result set holding the elements of the subarray that starts at Retrieves a ResultSet object that contains a subarray of the elements in this SerialArray object, starting at index index and containing up to count successive elements.
getRow() - Method in class com.sun.rowset.CachedRowSetImpl
Returns the number of the current row in this CachedRowSetImpl object.
getRow() - Method in class com.sun.rowset.JdbcRowSetImpl
Retrieves the current row number.
getRow() - Method in class com.sun.rowset.JoinRowSetImpl
Returns the number of the current row in this JoinRowSetImpl object.
getRow() - Method in class com.sun.rowset.internal.SyncResolverImpl
Returns the number of the current row in this CachedRowSetImpl object.
getRow() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getRow() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getRowSetNames() - Method in class com.sun.rowset.JoinRowSetImpl
Returns a string array of the RowSet names currently residing with the JoinRowSet object instance.
getRowSetNames() - Method in interface javax.sql.rowset.JoinRowSet
Returns a String array containing the names of the RowSet objects added to this JoinRowSet object.
getRowSetReader() - Method in class com.sun.rowset.providers.RIOptimisticProvider
Returns the javax.sql.RowSetReader object for this RIOptimisticProvider object.
getRowSetReader() - Method in class com.sun.rowset.providers.RIXMLProvider
Returns a null object as RowSetWriter objects are not returned by this SyncProvider
getRowSetReader() - Method in class javax.sql.rowset.spi.SyncProvider
Returns a javax.sql.RowSetReader object, which can be used to populate a RowSet object with data.
getRowSetWarnings() - Method in class com.sun.rowset.CachedRowSetImpl
The first warning reported by calls on this CachedRowSetImpl object is returned.
getRowSetWarnings() - Method in class com.sun.rowset.JdbcRowSetImpl
Return the RowSetWarning object for the current row of a JdbcRowSetImpl
getRowSetWarnings() - Method in class com.sun.rowset.internal.SyncResolverImpl
The first warning reported by calls on this CachedRowSetImpl object is returned.
getRowSetWarnings() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getRowSetWarnings() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getRowSetWarnings() - Method in interface javax.sql.rowset.CachedRowSet
Retrieves the first warning reported by calls on this RowSet object.
getRowSetWarnings() - Method in interface javax.sql.rowset.JdbcRowSet
Retrieves the first warning reported by calls on this JdbcRowSet object.
getRowSetWriter() - Method in class com.sun.rowset.providers.RIOptimisticProvider
Returns the javax.sql.RowSetWriter object for this RIOptimisticProvider object.
getRowSetWriter() - Method in class com.sun.rowset.providers.RIXMLProvider
Returns a null object as RowSetWriters are not returned by this SyncProvider
getRowSetWriter() - Method in class javax.sql.rowset.spi.SyncProvider
Returns a javax.sql.RowSetWriter object, which can be used to write a RowSet object's data back to the underlying data source.
getRowSets() - Method in class com.sun.rowset.JoinRowSetImpl
Returns a Collection of the RowSet object instances currently residing with the instance of the JoinRowSet object instance.
getRowSets() - Method in interface javax.sql.rowset.JoinRowSet
Returns a Collection object containing the RowSet objects that have been added to this JoinRowSet object.
getSQLException() - Method in interface com.sun.sql.rowset.SyncResolverX
Retrieves the conflict's SQLException.
getSQLTypeName() - Method in class javax.sql.rowset.serial.SerialStruct
Retrieves the SQL type name for this SerialStruct object.
getScale(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Retrieves the number of digits to the right of the decimal point for values stored in the designated column.
getSchemaName() - Method in interface com.sun.sql.rowset.CachedRowSetX
Returns the schema in which the table referred to by the tableName property resides.
getSchemaName() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns the schema in which the table referred to by the tableName property resides.

getSchemaName(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Retrieves the schema name of the table from which the value in the designated column was derived.
getShort(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a short value.
getShort(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value stored in the designated column of the current row as a short value.
getShort(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a short.
getShort(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a short.
getShort(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a short value.
getShort(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value stored in the designated column of the current row as a short value.
getShort(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a short value.
getShort(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value stored in the designated column of the current row as a short value.
getShort(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getShort(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getShort(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getShort(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getShowDeleted() - Method in class javax.sql.rowset.BaseRowSet
Retrieves a boolean indicating whether rows marked for deletion appear in the set of current rows.
getShowDeleted() - Method in interface javax.sql.rowset.CachedRowSet
Retrieves a boolean indicating whether rows marked for deletion appear in the set of current rows.
getShowDeleted() - Method in interface javax.sql.rowset.JdbcRowSet
Retrieves a boolean indicating whether rows marked for deletion appear in the set of current rows.
getStatement() - Method in class com.sun.rowset.CachedRowSetImpl
Returns null.
getStatement() - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the Statement object that produced this ResultSet object.
getStatement() - Method in class com.sun.rowset.JoinRowSetImpl
Returns null.
getStatement() - Method in class com.sun.rowset.internal.SyncResolverImpl
Returns null.
getStatement() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns null.
getStatement() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getStatus() - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the conflict status of the current row of this SyncResolver, which indicates the operationthe RowSet object was attempting when the conflict occurred.
getStatus() - Method in interface javax.sql.rowset.spi.SyncResolver
Retrieves the conflict status of the current row of this SyncResolver, which indicates the operation the RowSet object was attempting when the conflict occurred.
getString(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a String object.
getString(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value stored in the designated column of the current row as a String object.
getString(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a String.
getString(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a String.
getString(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a String object.
getString(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value stored in the designated column of the current row as a String object.
getString(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a String object.
getString(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value stored in the designated column of the current row as a String object.
getString(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getString(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getString(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getString(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getSubString(long, int) - Method in class javax.sql.rowset.serial.SerialClob
Returns a copy of the substring contained in this SerialClob object, starting at the given position and continuing for the specified number or characters.
getSyncFactory() - Static method in class javax.sql.rowset.spi.SyncFactory
Returns the SyncFactory singleton.
getSyncProvider() - Method in class com.sun.rowset.CachedRowSetImpl
Returns the SyncProvider implementation being used with this CachedRowSetImpl implementation rowset.
getSyncProvider() - Method in class com.sun.rowset.internal.SyncResolverImpl
Returns the SyncProvider implementation being used with this CachedRowSetImpl implementation rowset.
getSyncProvider() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Retrieves the SyncProvider implementation for this CachedRowSet object. Internally, this method is used by a rowset to trigger read or write actions between the rowset and the data source. For example, a rowset may need to get a handle on the the rowset reader (RowSetReader object) from the SyncProvider to allow the rowset to be populated.
     RowSetReader rowsetReader = null;
     SyncProvider provider = 
         SyncFactory.getInstance("javax.sql.rowset.provider.RIOptimisticProvider");
         if (provider instanceof RIOptimisticProvider) {
             rowsetReader = provider.getRowSetReader();
         }
 
Assuming rowsetReader is a private, accessible field within the rowset implementation, when an application calls the execute method, it in turn calls on the reader's readData method to populate the RowSet object.
    
     rowsetReader.readData((RowSetInternal)this);
 

In addition, an application can use the SyncProvider object returned by this method to call methods that return information about the SyncProvider object, including information about the vendor, version, provider identification, synchronization grade, and locks it currently has set.

getSyncProvider() - Method in interface javax.sql.rowset.CachedRowSet
Retrieves the SyncProvider implementation for this CachedRowSet object.
getSyncResolver() - Method in class javax.sql.rowset.spi.SyncProviderException
Retrieves the SyncResolver object that has been set for this SyncProviderException object, or if none has been set, an instance of the default SyncResolver implementation included in the reference implementation.
getTableName() - Method in class com.sun.rowset.CachedRowSetImpl
Returns an identifier for the object (table) that was used to create this rowset.
getTableName() - Method in class com.sun.rowset.internal.SyncResolverImpl
Returns an identifier for the object (table) that was used to create this rowset.
getTableName() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getTableName() - Method in interface javax.sql.rowset.CachedRowSet
Returns an identifier for the object (table) that was used to create this CachedRowSet object.
getTableName(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Retrieves the name of the table from which the value in the designated column was derived.
getTime(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.sql.Time object.
getTime(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value stored in the designated column of the current row as a java.sql.Time object.
getTime(int, Calendar) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.sql.Time object, using the given Calendar object to construct an appropriate millisecond value for the date.
getTime(String, Calendar) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.sql.Time object, using the given Calendar object to construct an appropriate millisecond value for the date.
getTime(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a java.sql.Time object in the Java programming language.
getTime(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a java.sql.Time object in the Java programming language.
getTime(int, Calendar) - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the value of the designated column in the current row of this rowset's ResultSet object as a java.sql.Time object.
getTime(String, Calendar) - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the value of the designated column in the current row of this rowset's ResultSet object as a java.sql.Time object.
getTime(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a java.sql.Time object.
getTime(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value stored in the designated column of the current row as a java.sql.Time object.
getTime(int, Calendar) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a java.sql.Time object, using the given Calendar object to construct an appropriate millisecond value for the date.
getTime(String, Calendar) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a java.sql.Time object, using the given Calendar object to construct an appropriate millisecond value for the date.
getTime(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.sql.Time object.
getTime(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value stored in the designated column of the current row as a java.sql.Time object.
getTime(int, Calendar) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.sql.Time object, using the given Calendar object to construct an appropriate millisecond value for the date.
getTime(String, Calendar) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.sql.Time object, using the given Calendar object to construct an appropriate millisecond value for the date.
getTime(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getTime(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getTime(int, Calendar) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getTime(String, Calendar) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getTime(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getTime(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getTime(int, Calendar) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getTime(String, Calendar) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getTimestamp(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.sql.Timestamp object.
getTimestamp(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value stored in the designated column of the current row as a java.sql.Timestamp object.
getTimestamp(int, Calendar) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.sql.Timestamp object, using the given Calendar object to construct an appropriate millisecond value for the date.
getTimestamp(String, Calendar) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.sql.Timestamp object, using the given Calendar object to construct an appropriate millisecond value for the date.
getTimestamp(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a java.sql.Timestamp object in the Java programming language.
getTimestamp(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Gets the value of the designated column in the current row of this rowset's ResultSet object as a java.sql.Timestamp object.
getTimestamp(int, Calendar) - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the value of the designated column in the current row of this rowset's ResultSet object as a java.sql.Timestamp object.
getTimestamp(String, Calendar) - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the value of the designated column in the current row of this rowset's ResultSet object as a java.sql.Timestamp object.
getTimestamp(int) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a java.sql.Timestamp object.
getTimestamp(String) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value stored in the designated column of the current row as a java.sql.Timestamp object.
getTimestamp(int, Calendar) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a java.sql.Timestamp object, using the given Calendar object to construct an appropriate millisecond value for the date.
getTimestamp(String, Calendar) - Method in class com.sun.rowset.JoinRowSetImpl
Retrieves the value of the designated column in the current row of this JoinRowSetImpl object as a java.sql.Timestamp object, using the given Calendar object to construct an appropriate millisecond value for the date.
getTimestamp(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.sql.Timestamp object.
getTimestamp(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value stored in the designated column of the current row as a java.sql.Timestamp object.
getTimestamp(int, Calendar) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.sql.Timestamp object, using the given Calendar object to construct an appropriate millisecond value for the date.
getTimestamp(String, Calendar) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in the current row of this CachedRowSetImpl object as a java.sql.Timestamp object, using the given Calendar object to construct an appropriate millisecond value for the date.
getTimestamp(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getTimestamp(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getTimestamp(int, Calendar) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getTimestamp(String, Calendar) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getTimestamp(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getTimestamp(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getTimestamp(int, Calendar) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getTimestamp(String, Calendar) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getTransactionIsolation() - Method in class javax.sql.rowset.BaseRowSet
Returns the transaction isolation property for this RowSet object's connection.
getType() - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the fetch size for this ResultSet object.
getType() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getType() - Method in class javax.sql.rowset.BaseRowSet
Returns the type of this RowSet object.
getTypeMap() - Method in class javax.sql.rowset.BaseRowSet
Retrieves the type map associated with the Connection object for this RowSet object.
getURL(int) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as a java.net.URL object in the Java programming language.
getURL(String) - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as a java.net.URL object in the Java programming language.
getURL(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Provide interface coverage for getURL(int) in ResultSet->RowSet
getURL(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Provide interface coverage for getURL(String) in ResultSet->RowSet
getURL(int) - Method in class com.sun.rowset.JoinRowSetImpl
Provide interface coverage for getURL(int) in ResultSet->RowSet
getURL(String) - Method in class com.sun.rowset.JoinRowSetImpl
Provide interface coverage for getURL(String) in ResultSet->RowSet
getURL(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as a java.net.URL object in the Java programming language.
getURL(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the value of the designated column in this CachedRowSetImpl object as a java.net.URL object in the Java programming language.
getURL(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getURL(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
getURL(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getURL(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getUnicodeStream(int) - Method in class com.sun.rowset.CachedRowSetImpl
Deprecated.  
getUnicodeStream(String) - Method in class com.sun.rowset.CachedRowSetImpl
Deprecated. use the method getCharacterStream instead
getUnicodeStream(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Deprecated. use getCharacterStream in place of getUnicodeStream
getUnicodeStream(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Deprecated.  
getUnicodeStream(int) - Method in class com.sun.rowset.JoinRowSetImpl
Deprecated.  
getUnicodeStream(String) - Method in class com.sun.rowset.JoinRowSetImpl
Deprecated. use the method getCharacterStream instead
getUnicodeStream(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Deprecated.  
getUnicodeStream(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Deprecated. use the method getCharacterStream instead
getUnicodeStream(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getUnicodeStream(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getUnicodeStream(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getUnicodeStream(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getUpdatableColumns() - Method in interface com.sun.sql.rowset.CachedRowSetX
Returns an array of boolean{/code>.
getUpdatableColumns(int) - Method in interface com.sun.sql.rowset.CachedRowSetX
Returns a boolean{/code> of true if the column should be updated when when updating rows or null.
getUpdatableColumns() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns an array of boolean{/code>. If setUpdatableColumns was never called, null is returned, else the value set when calling setUpdatebleColumns{/code> is returned. See setUpdatableColumns for details.

Note, the column is zero based whereas most jdbc calls are one based.

Note: This method is called by com.sun.sql.rowset.internal.CachedRowSetXWriter.

getUpdatableColumns(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns a boolean{/code> of true if the column should be updated when when updating rows or null.

Note, the column is zero based whereas most jdbc calls are one based.

getUpdated() - Method in class com.sun.rowset.internal.Row
Retrieves the value of this Row object's updated field.
getUrl() - Method in class javax.sql.rowset.BaseRowSet
Retrieves the JDBC URL that this RowSet object's javax.sql.Reader object uses to make a connection with a relational database using a JDBC technology-enabled driver.
getUsername() - Method in class javax.sql.rowset.BaseRowSet
Returns the user name used to create a database connection.
getVendor() - Method in class com.sun.rowset.providers.RIOptimisticProvider
Returns the vendor name of the Reference Implemntation Optimistic Syncchronication Provider
getVendor() - Method in class com.sun.rowset.providers.RIXMLProvider
Returns the vendor name of the Reference Implemntation Optimistic Syncchronication Provider
getVendor() - Method in class javax.sql.rowset.spi.SyncProvider
Returns the vendor name of this SyncProvider instance
getVersion() - Method in class com.sun.rowset.providers.RIOptimisticProvider
Returns the release version ID of the Reference Implementation Optimistic Synchronization Provider.
getVersion() - Method in class com.sun.rowset.providers.RIXMLProvider
Returns the release version ID of the Reference Implementation Optimistic Synchronization Provider.
getVersion() - Method in class javax.sql.rowset.spi.SyncProvider
Returns the release version of this SyncProvider instance.
getWarnings() - Method in class com.sun.rowset.CachedRowSetImpl
The first warning reported by calls on this CachedRowSetImpl object is returned.
getWarnings() - Method in class com.sun.rowset.JdbcRowSetImpl
Returns the first warning reported by calls on this rowset's ResultSet object.
getWarnings() - Method in class com.sun.rowset.JoinRowSetImpl
 
getWarnings() - Method in class com.sun.rowset.internal.SyncResolverImpl
The first warning reported by calls on this CachedRowSetImpl object is returned.
getWarnings() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
getWarnings() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
getWhereClause() - Method in class com.sun.rowset.JoinRowSetImpl
Return a SQL-like description of the WHERE clause being used in a JoinRowSet object instance.
getWhereClause() - Method in interface javax.sql.rowset.JoinRowSet
Return a SQL-like description of the WHERE clause being used in a JoinRowSet object.
getXmlReader() - Method in class com.sun.rowset.providers.RIXMLProvider
Retrieves the reader that this WebRowSet object will call when its readXml method is called.
getXmlWriter() - Method in class com.sun.rowset.providers.RIXMLProvider
Retrieves the writer that this WebRowSet object will call when its writeXml method is called.

I

INNER_JOIN - Static variable in interface javax.sql.rowset.JoinRowSet
An ANSI-style JOIN providing a inner join between two tables.
INSERT_ROW_CONFLICT - Static variable in interface javax.sql.rowset.spi.SyncResolver
Indicates that a conflict occurred while the RowSet object was attempting to insert a row into the data source.
InsertRow - class com.sun.rowset.internal.InsertRow.
A class used internally to manage a CachedRowSet object's insert row.
InsertRow(int) - Constructor for class com.sun.rowset.internal.InsertRow
Creates an InsertRow object initialized with the given number of columns, an array for keeping track of the original values in this insert row, and a BitSet object with the same number of bits as there are columns.
initColumnObject(int, Object) - Method in class com.sun.rowset.internal.Row
This method is called internally by the CachedRowSet.populate methods.
initInsertRow() - Method in class com.sun.rowset.internal.InsertRow
Clears all the bits in the internal BitSet object maintained by this InsertRow object.
initMetaData(RowSetMetaData, ResultSetMetaData) - Method in class com.sun.rowset.JdbcRowSetImpl
Initializes the given RowSetMetaData object with the values in the given ResultSetMetaData object.
initParams() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
initParams() - Method in class javax.sql.rowset.BaseRowSet
Performs the necessary internal configurations and initializations to allow any JDBC RowSet implementation to start using the standard facilities provided by a BaseRowSet instance.
insertRow() - Method in class com.sun.rowset.CachedRowSetImpl
Inserts the contents of this CachedRowSetImpl object's insert row into this rowset immediately following the current row.
insertRow() - Method in class com.sun.rowset.FilteredRowSetImpl
Inserts the contents of this CachedRowSetImpl object's insert row into this rowset immediately following the current row.
insertRow() - Method in class com.sun.rowset.JdbcRowSetImpl
Inserts the contents of the insert row into this ResultSet object and into the database and also notifies listeners that a row has changed.
insertRow() - Method in class com.sun.rowset.JoinRowSetImpl
Inserts the contents of this JoinRowSetImpl object's insert row into this rowset immediately following the current row.
insertRow() - Method in class com.sun.rowset.internal.SyncResolverImpl
Inserts the contents of this CachedRowSetImpl object's insert row into this rowset immediately following the current row.
insertRow() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
insertRow() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
internalFirst() - Method in class com.sun.rowset.CachedRowSetImpl
Moves this CachedRowSetImpl object's cursor to the first row and returns true if the operation is successful.
internalFirst() - Method in class com.sun.rowset.FilteredRowSetImpl
Over-riding internalFirst() implementation.
internalFirst() - Method in class com.sun.rowset.internal.SyncResolverImpl
Moves this CachedRowSetImpl object's cursor to the first row and returns true if the operation is successful.
internalFirst() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
internalLast() - Method in class com.sun.rowset.CachedRowSetImpl
Moves this CachedRowSetImpl object's cursor to the last row and returns true if the operation is successful.
internalLast() - Method in class com.sun.rowset.FilteredRowSetImpl
Over-riding internalLast() implementation.
internalLast() - Method in class com.sun.rowset.internal.SyncResolverImpl
Moves this CachedRowSetImpl object's cursor to the last row and returns true if the operation is successful.
internalLast() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
internalNext() - Method in class com.sun.rowset.CachedRowSetImpl
Moves this CachedRowSetImpl object's cursor to the next row and returns true if the cursor is still in the rowset; returns false if the cursor has moved to the position after the last row.
internalNext() - Method in class com.sun.rowset.FilteredRowSetImpl
Over-riding internalNext() implementation.
internalNext() - Method in class com.sun.rowset.internal.SyncResolverImpl
Moves this CachedRowSetImpl object's cursor to the next row and returns true if the cursor is still in the rowset; returns false if the cursor has moved to the position after the last row.
internalNext() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Moves this CachedRowSetXImpl object's cursor to the next row and returns true if the cursor is still in the rowset; returns false if the cursor has moved to the position after the last row.
internalPrevious() - Method in class com.sun.rowset.CachedRowSetImpl
Moves the cursor to the previous row in this CachedRowSetImpl object, skipping past deleted rows that are not visible; returns true if the cursor is on a row in this rowset and false when the cursor goes before the first row.
internalPrevious() - Method in class com.sun.rowset.FilteredRowSetImpl
Over-riding internalPrevious() implementation.
internalPrevious() - Method in class com.sun.rowset.internal.SyncResolverImpl
Moves the cursor to the previous row in this CachedRowSetImpl object, skipping past deleted rows that are not visible; returns true if the cursor is on a row in this rowset and false when the cursor goes before the first row.
internalPrevious() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
internalUseInstance - Variable in class com.sun.sql.rowset.CachedRowSetXImpl
The internalUseInstance flag tells to ignore exceptional conditions with regard to the rowset not being executed.
isAfterLast() - Method in class com.sun.rowset.CachedRowSetImpl
Indicates whether the cursor is after the last row in this CachedRowSetImpl object.
isAfterLast() - Method in class com.sun.rowset.JdbcRowSetImpl
Indicates whether the cursor is after the last row in this rowset's ResultSet object.
isAfterLast() - Method in class com.sun.rowset.JoinRowSetImpl
Indicates whether the cursor is after the last row in this JoinRowSetImpl object.
isAfterLast() - Method in class com.sun.rowset.internal.SyncResolverImpl
Indicates whether the cursor is after the last row in this CachedRowSetImpl object.
isAfterLast() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
isAfterLast() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
isAutoIncrement(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Retrieves whether a value stored in the designated column is automatically numbered, and thus readonly.
isBeforeFirst() - Method in class com.sun.rowset.CachedRowSetImpl
Indicates whether the cursor is before the first row in this CachedRowSetImpl object.
isBeforeFirst() - Method in class com.sun.rowset.JdbcRowSetImpl
Indicates whether the cursor is before the first row in this rowset's ResultSet object.
isBeforeFirst() - Method in class com.sun.rowset.JoinRowSetImpl
Indicates whether the cursor is before the first row in this JoinRowSetImpl object.
isBeforeFirst() - Method in class com.sun.rowset.internal.SyncResolverImpl
Indicates whether the cursor is before the first row in this CachedRowSetImpl object.
isBeforeFirst() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
isBeforeFirst() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
isCaseSensitive(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Indicates whether the case of the designated column's name matters.
isCompleteRow(RowSetMetaData) - Method in class com.sun.rowset.internal.InsertRow
Indicates whether this InsertRow object has a value for every column that cannot be null.
isCurrency(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Indicates whether a value stored in the designated column is a cash value.
isDefinitelyWritable(int) - Method in class com.sun.sql.rowset.RowSetMetaDataXImpl
 
isDefinitelyWritable(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Indicates whether a write operation on the designated column will definitely succeed.
isExecuted() - Method in interface com.sun.sql.rowset.CachedRowSetX
Returns true if this rowset is in an executed state
isExecuted() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns true if this rowset is in an executed state
isExecuted() - Method in interface com.sun.sql.rowset.JdbcRowSetX
Returns true if this rowset is in an executed state
isExecuted() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
isFirst() - Method in class com.sun.rowset.CachedRowSetImpl
Indicates whether the cursor is on the first row in this CachedRowSetImpl object.
isFirst() - Method in class com.sun.rowset.JdbcRowSetImpl
Indicates whether the cursor is on the first row of this rowset's ResultSet object.
isFirst() - Method in class com.sun.rowset.JoinRowSetImpl
Indicates whether the cursor is on the first row in this JoinRowSetImpl object.
isFirst() - Method in class com.sun.rowset.internal.SyncResolverImpl
Indicates whether the cursor is on the first row in this CachedRowSetImpl object.
isFirst() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
isFirst() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
isLast() - Method in class com.sun.rowset.CachedRowSetImpl
Indicates whether the cursor is on the last row in this CachedRowSetImpl object.
isLast() - Method in class com.sun.rowset.JdbcRowSetImpl
Indicates whether the cursor is on the last row of this rowset's ResultSet object.
isLast() - Method in class com.sun.rowset.JoinRowSetImpl
Indicates whether the cursor is on the last row in this JoinRowSetImpl object.
isLast() - Method in class com.sun.rowset.internal.SyncResolverImpl
Indicates whether the cursor is on the last row in this CachedRowSetImpl object.
isLast() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
isLast() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
isNullable(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Retrieves a constant indicating whether it is possible to store a NULL value in the designated column.
isReadOnly(int) - Method in class com.sun.sql.rowset.RowSetMetaDataXImpl
 
isReadOnly() - Method in class javax.sql.rowset.BaseRowSet
Returns a boolean indicating whether this RowSet object is read-only.
isReadOnly(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Indicates whether the designated column is definitely not writable, thus readonly.
isSearchable(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Indicates whether a value stored in the designated column can be used in a WHERE clause.
isSigned(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Indicates whether a value stored in the designated column is a signed number.
isWritable(int) - Method in class com.sun.sql.rowset.RowSetMetaDataXImpl
 
isWritable(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Indicates whether it is possible for a write operation on the designated column to succeed.

J

JdbcRowSet - interface javax.sql.rowset.JdbcRowSet.
The standard interface that all standard implementations of JdbcRowSet must implement.
JdbcRowSetImpl - class com.sun.rowset.JdbcRowSetImpl.
The standard implementation of the JdbcRowSet interface.
JdbcRowSetImpl() - Constructor for class com.sun.rowset.JdbcRowSetImpl
Constructs a default JdbcRowSet object.
JdbcRowSetImpl(Connection) - Constructor for class com.sun.rowset.JdbcRowSetImpl
Constructs a default JdbcRowSet object given a valid Connection object.
JdbcRowSetImpl(String, String, String) - Constructor for class com.sun.rowset.JdbcRowSetImpl
Constructs a default JdbcRowSet object using the URL, username, and password arguments supplied.
JdbcRowSetImpl(ResultSet) - Constructor for class com.sun.rowset.JdbcRowSetImpl
Constructs a JdbcRowSet object using the given valid ResultSet object.
JdbcRowSetX - interface com.sun.sql.rowset.JdbcRowSetX.
The standard interface that all standard implementations of JdbcRowSetX must implement.
JdbcRowSetXImpl - class com.sun.sql.rowset.JdbcRowSetXImpl.
The standard implementation of the JdbcRowSetX interface.
JdbcRowSetXImpl() - Constructor for class com.sun.sql.rowset.JdbcRowSetXImpl
Constructs a default JdbcRowSetXImpl object instance.
JdbcRowSetXImpl(Connection) - Constructor for class com.sun.sql.rowset.JdbcRowSetXImpl
Constructs a JdbcRowSetX object given a valid Connection object instance.
JdbcRowSetXImpl(String, String, String) - Constructor for class com.sun.sql.rowset.JdbcRowSetXImpl
Constructs a JdbcRowSetX object using the standard JDBC URL and username and password parameters.
JdbcRowSetXImpl(ResultSet) - Constructor for class com.sun.sql.rowset.JdbcRowSetXImpl
Constructs a JdbcRowSetX object using a given valid ResultSet object instance.
JoinRowSet - interface javax.sql.rowset.JoinRowSet.
The JoinRowSet interface provides a mechanism for combining related data from different RowSet objects into one JoinRowSet object, which represents an SQL JOIN.
JoinRowSetImpl - class com.sun.rowset.JoinRowSetImpl.
The standard implementation of the JoinRowSet interface providing an SQL JOIN between RowSet objects.
JoinRowSetImpl() - Constructor for class com.sun.rowset.JoinRowSetImpl
Constructor for JoinRowSetImpl class.
Joinable - interface javax.sql.rowset.Joinable.
1.0 Background
javax.sql.rowset - package javax.sql.rowset
 
javax.sql.rowset.serial - package javax.sql.rowset.serial
 
javax.sql.rowset.spi - package javax.sql.rowset.spi
 

L

LEFT_OUTER_JOIN - Static variable in interface javax.sql.rowset.JoinRowSet
An ANSI-style JOIN providing a left outer join between two tables.
last() - Method in class com.sun.rowset.CachedRowSetImpl
Moves this CachedRowSetImpl object's cursor to the last row and returns true if the operation was successful.
last() - Method in class com.sun.rowset.JdbcRowSetImpl
Moves the cursor to the last row in this rowset's ResultSet object.
last() - Method in class com.sun.rowset.JoinRowSetImpl
Moves this JoinRowSetImpl object's cursor to the last row and returns true if the operation was successful.
last() - Method in class com.sun.rowset.internal.SyncResolverImpl
Moves this CachedRowSetImpl object's cursor to the last row and returns true if the operation was successful.
last() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
last() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
length() - Method in class javax.sql.rowset.serial.SerialBlob
Retrieves the number of bytes in this SerialBlob object's array of bytes.
length() - Method in class javax.sql.rowset.serial.SerialClob
Retrieves the number of characters in this SerialClob object's array of characters.

M

markColInserted(int) - Method in class com.sun.rowset.internal.InsertRow
Sets the bit in this InsertRow object's internal BitSet object that corresponds to the specified column in this InsertRow object.
moveCurrentToOrig() - Method in class com.sun.rowset.internal.Row
Sets the column values in this Row object's internal array of original values with the values in its internal array of current values, sets all the values in this Row object's internal array of current values to null, clears all the bits in this Row object's internal bitset, and sets its updated field to false.
moveToCurrentRow() - Method in class com.sun.rowset.CachedRowSetImpl
Moves the cursor for this CachedRowSetImpl object to the current row.
moveToCurrentRow() - Method in class com.sun.rowset.JdbcRowSetImpl
Moves the cursor to the remembered cursor position, usually the current row.
moveToCurrentRow() - Method in class com.sun.rowset.JoinRowSetImpl
Moves the cursor for this JoinRowSetImpl object to the current row.
moveToCurrentRow() - Method in class com.sun.rowset.internal.SyncResolverImpl
Moves the cursor for this CachedRowSetImpl object to the current row.
moveToCurrentRow() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
moveToCurrentRow() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
moveToInsertRow() - Method in class com.sun.rowset.CachedRowSetImpl
Moves the cursor for this CachedRowSetImpl object to the insert row.
moveToInsertRow() - Method in class com.sun.rowset.FilteredRowSetImpl
Moves the cursor for this CachedRowSetImpl object to the insert row.
moveToInsertRow() - Method in class com.sun.rowset.JdbcRowSetImpl
Moves the cursor to the insert row.
moveToInsertRow() - Method in class com.sun.rowset.JoinRowSetImpl
Moves the cursor for this JoinRowSetImpl object to the insert row.
moveToInsertRow() - Method in class com.sun.rowset.internal.SyncResolverImpl
Moves the cursor for this CachedRowSetImpl object to the insert row.
moveToInsertRow() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
moveToInsertRow() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 

N

NONUPDATABLE_VIEW_SYNC - Static variable in class javax.sql.rowset.spi.SyncProvider
Indicates that a SyncProvider implementation does not support synchronization between a RowSet object and the SQL VIEW used to populate it.
NO_ROW_CONFLICT - Static variable in interface javax.sql.rowset.spi.SyncResolver
Indicates that no conflict occured while the RowSet object was attempting to update, delete or insert a row in the data source.
next() - Method in class com.sun.rowset.CachedRowSetImpl
Moves the cursor down one row from its current position and returns true if the new cursor position is a valid row.
next() - Method in class com.sun.rowset.JdbcRowSetImpl
Moves the cursor for this rowset's ResultSet object down one row from its current position.
next() - Method in class com.sun.rowset.JoinRowSetImpl
Moves the cursor down one row from its current position and returns true if the new cursor position is a valid row.
next() - Method in class com.sun.rowset.internal.SyncResolverImpl
Moves the cursor down one row from its current position and returns true if the new cursor position is a valid row.
next() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
next() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
nextConflict() - Method in class com.sun.rowset.internal.SyncResolverImpl
Moves the cursor down one row from its current position.
nextConflict() - Method in interface javax.sql.rowset.spi.SyncResolver
Moves the cursor down from its current position to the next row that contains a conflict value.
nextPage() - Method in class com.sun.rowset.CachedRowSetImpl
The nextPage gets the next page, that is a CachedRowSetImpl object containing the number of rows specified by page size.
nextPage() - Method in class com.sun.rowset.internal.SyncResolverImpl
The nextPage gets the next page, that is a CachedRowSetImpl object containing the number of rows specified by page size.
nextPage() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
nextPage() - Method in interface javax.sql.rowset.CachedRowSet
Increments the current page of the CachedRowSet.
notationDecl(String, String, String) - Method in class com.sun.rowset.internal.XmlReaderContentHandler
 
notifyCursorMoved() - Method in class javax.sql.rowset.BaseRowSet
Notifies all of the listeners registered with this RowSet object that its cursor has moved.
notifyRowChanged() - Method in class javax.sql.rowset.BaseRowSet
Notifies all of the listeners registered with this RowSet object that one of its rows has changed.
notifyRowSetChanged() - Method in class javax.sql.rowset.BaseRowSet
Notifies all of the listeners registered with this RowSet object that its entire contents have changed.

O

origVals - Variable in class com.sun.rowset.internal.BaseRow
The array containing the original values for this BaseRow object.

P

PUBLIC_XML_SCHEMA - Static variable in interface javax.sql.rowset.WebRowSet
The public identifier for the XML Schema definition that defines the XML tags and their valid values for a WebRowSet implementation.
Predicate - interface javax.sql.rowset.Predicate.
The standard interface that provides the framework for all FilteredRowSet objects to describe their filters.
populate(ResultSet) - Method in class com.sun.rowset.CachedRowSetImpl
Populates this CachedRowSetImpl object with data from the given ResultSet object.
populate(ResultSet, int) - Method in class com.sun.rowset.CachedRowSetImpl
Populates this CachedRowSet object with data from the given ResultSet object.
populate(ResultSet) - Method in class com.sun.rowset.internal.SyncResolverImpl
Populates this CachedRowSetImpl object with data from the given ResultSet object.
populate(ResultSet, int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Populates this CachedRowSet object with data from the given ResultSet object.
populate(ResultSet) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Populates this CachedRowSet object with data from the given ResultSet object.

This method can be used as an alternative to the execute method when an application has a connection to an open ResultSet object. Using the method populate can be more efficient than using the version of the execute method that takes no parameters because it does not open a new connection and re-execute this CachedRowSet object's command. Using the populate method is more a matter of convenience when compared to using the version of execute that takes a ResultSet object.

populate(ResultSet, int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
populate(ResultSet) - Method in interface javax.sql.rowset.CachedRowSet
Populates this CachedRowSet object with data from the given ResultSet object.
populate(ResultSet, int) - Method in interface javax.sql.rowset.CachedRowSet
Populates this CachedRowSet object with data from the given ResultSet object.
position(byte[], long) - Method in class javax.sql.rowset.serial.SerialBlob
Returns the position in this SerialBlob object where the given pattern of bytes begins, starting the search at the specified position.
position(Blob, long) - Method in class javax.sql.rowset.serial.SerialBlob
Returns the position in this SerialBlob object where the given Blob object begins, starting the search at the specified position.
position(String, long) - Method in class javax.sql.rowset.serial.SerialClob
Returns the position in this SerialClob object where the given String object begins, starting the search at the specified position.
position(Clob, long) - Method in class javax.sql.rowset.serial.SerialClob
Returns the position in this SerialClob object where the given Clob signature begins, starting the search at the specified position.
prepare() - Method in class com.sun.rowset.JdbcRowSetImpl
 
previous() - Method in class com.sun.rowset.CachedRowSetImpl
Moves this CachedRowSetImpl object's cursor to the previous row and returns true if the cursor is on a valid row or false if it is not.
previous() - Method in class com.sun.rowset.JdbcRowSetImpl
Moves the cursor to the previous row in this ResultSet object.
previous() - Method in class com.sun.rowset.JoinRowSetImpl
Moves this JoinRowSetImpl object's cursor to the previous row and returns true if the cursor is on a valid row or false if it is not.
previous() - Method in class com.sun.rowset.internal.SyncResolverImpl
Moves this CachedRowSetImpl object's cursor to the previous row and returns true if the cursor is on a valid row or false if it is not.
previous() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
previous() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
previousConflict() - Method in class com.sun.rowset.internal.SyncResolverImpl
Moves the cursor to the previous conflict row in this SyncResolver object.
previousConflict() - Method in interface javax.sql.rowset.spi.SyncResolver
Moves the cursor up from its current position to the previous conflict row in this SyncResolver object.
previousPage() - Method in class com.sun.rowset.CachedRowSetImpl
Retrieves the data present in the page prior to the page from where it is called.
previousPage() - Method in class com.sun.rowset.internal.SyncResolverImpl
Retrieves the data present in the page prior to the page from where it is called.
previousPage() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
previousPage() - Method in interface javax.sql.rowset.CachedRowSet
Decrements the current page of the CachedRowSet.

R

RIGHT_OUTER_JOIN - Static variable in interface javax.sql.rowset.JoinRowSet
An ANSI-style JOIN providing a right outer join between two tables.
RIOptimisticProvider - class com.sun.rowset.providers.RIOptimisticProvider.
The reference implementation of a JDBC Rowset synchronization provider providing optimistic synchronization with a relational datastore using any JDBC technology-enabled driver.
RIOptimisticProvider() - Constructor for class com.sun.rowset.providers.RIOptimisticProvider
Creates an RIOptimisticProvider object initialized with the fully qualified class name of this SyncProvider implementation and a default reader and writer.
RIXMLProvider - class com.sun.rowset.providers.RIXMLProvider.
A reference implementation of a JDBC RowSet synchronization provider with the ability to read and write rowsets in well formed XML using the standard WebRowSet schema.
RIXMLProvider() - Constructor for class com.sun.rowset.providers.RIXMLProvider
This provider is available to all JDBC RowSet implementations as the default persistence provider.
ROWSET_SYNC_PROVIDER - Static variable in class javax.sql.rowset.spi.SyncFactory
The standard property-id for a synchronization provider implementation name.
ROWSET_SYNC_PROVIDER_VERSION - Static variable in class javax.sql.rowset.spi.SyncFactory
The standard property-id for a synchronization provider implementation version tag.
ROWSET_SYNC_VENDOR - Static variable in class javax.sql.rowset.spi.SyncFactory
The standard property-id for a synchronization provider implementation vendor name.
Row - class com.sun.rowset.internal.Row.
A class that keeps track of a row's values.
Row(int) - Constructor for class com.sun.rowset.internal.Row
Creates a new Row object with the given number of columns.
Row(int, Object[]) - Constructor for class com.sun.rowset.internal.Row
Creates a new Row object with the given number of columns and with its array of original values initialized to the given array.
RowSetMetaDataImpl - class javax.sql.rowset.RowSetMetaDataImpl.
Provides implementations for the methods that set and get metadata information about a RowSet object's columns.
RowSetMetaDataImpl() - Constructor for class javax.sql.rowset.RowSetMetaDataImpl
 
RowSetMetaDataX - interface com.sun.sql.rowset.RowSetMetaDataX.
An object that contains information about the columns in a RowSet object.
RowSetMetaDataXImpl - class com.sun.sql.rowset.RowSetMetaDataXImpl.
Implements RowSetMetaDataX
RowSetMetaDataXImpl() - Constructor for class com.sun.sql.rowset.RowSetMetaDataXImpl
 
RowSetWarning - exception javax.sql.rowset.RowSetWarning.
An extension of SQLException that provides information about database warnings set on RowSet objects.
RowSetWarning(String) - Constructor for class javax.sql.rowset.RowSetWarning
Constructs a RowSetWarning object with the given value for the reason; SQLState defaults to null, and vendorCode defaults to 0.
RowSetWarning() - Constructor for class javax.sql.rowset.RowSetWarning
Constructs a default RowSetWarning object.
RowSetWarning(String, String) - Constructor for class javax.sql.rowset.RowSetWarning
Constructs a RowSetWarning object initialized with the given values for the reason and SQLState.
RowSetWarning(String, String, int) - Constructor for class javax.sql.rowset.RowSetWarning
Constructs a fully specified RowSetWarning object initialized with the given values for the reason, SQLState and vendorCode.
readArray() - Method in class javax.sql.rowset.serial.SQLInputImpl
Reads an SQL ARRAY value from the stream and returns it as an Array object in the Java programming language.
readAsciiStream() - Method in class javax.sql.rowset.serial.SQLInputImpl
Returns the next attribute in this SQLInputImpl object as a stream of ASCII characters.
readBigDecimal() - Method in class javax.sql.rowset.serial.SQLInputImpl
Retrieves the next attribute in this SQLInputImpl object as a java.math.BigDecimal.
readBinaryStream() - Method in class javax.sql.rowset.serial.SQLInputImpl
Returns the next attribute in this SQLInputImpl object as a stream of uninterpreted bytes.
readBlob() - Method in class javax.sql.rowset.serial.SQLInputImpl
Retrieves the BLOB value at the head of this SQLInputImpl object as a Blob object in the Java programming language.
readBoolean() - Method in class javax.sql.rowset.serial.SQLInputImpl
Retrieves the next attribute in this SQLInputImpl object as a boolean in the Java programming language.
readByte() - Method in class javax.sql.rowset.serial.SQLInputImpl
Retrieves the next attribute in this SQLInputImpl object as a byte in the Java programming language.
readBytes() - Method in class javax.sql.rowset.serial.SQLInputImpl
Retrieves the next attribute in this SQLInputImpl object as an array of bytes.
readCharacterStream() - Method in class javax.sql.rowset.serial.SQLInputImpl
Retrieves the next attribute in this SQLInputImpl object as a stream of Unicode characters.
readClob() - Method in class javax.sql.rowset.serial.SQLInputImpl
Retrieves the CLOB value at the head of this SQLInputImpl object as a Clob object in the Java programming language.
readData(RowSetInternal) - Method in class com.sun.rowset.internal.CachedRowSetReader
Reads data from a data source and populates the given RowSet object with that data.
readData(RowSetInternal) - Method in class com.sun.rowset.internal.WebRowSetXmlReader
For code coverage purposes only right now
readDate() - Method in class javax.sql.rowset.serial.SQLInputImpl
Retrieves the next attribute in this SQLInputImpl as a java.sql.Date object.
readDouble() - Method in class javax.sql.rowset.serial.SQLInputImpl
Retrieves the next attribute in this SQLInputImpl object as a double in the Java programming language.
readFloat() - Method in class javax.sql.rowset.serial.SQLInputImpl
Retrieves the next attribute in this SQLInputImpl object as a float in the Java programming language.
readInt() - Method in class javax.sql.rowset.serial.SQLInputImpl
Retrieves the next attribute in this SQLInputImpl object as an int in the Java programming language.
readLong() - Method in class javax.sql.rowset.serial.SQLInputImpl
Retrieves the next attribute in this SQLInputImpl object as a long in the Java programming language.
readObject() - Method in class javax.sql.rowset.serial.SQLInputImpl
Retrieves the value at the head of this SQLInputImpl object as an Object in the Java programming language.
readRef() - Method in class javax.sql.rowset.serial.SQLInputImpl
Retrieves the value at the head of this SQLInputImpl object as a Ref object in the Java programming language.
readShort() - Method in class javax.sql.rowset.serial.SQLInputImpl
Retrieves the next attribute in this SQLInputImpl object as a short in the Java programming language.
readString() - Method in class javax.sql.rowset.serial.SQLInputImpl
Retrieves the next attribute in this SQLInputImpl object as a String in the Java programming language.
readTime() - Method in class javax.sql.rowset.serial.SQLInputImpl
Retrieves the next attribute in this SQLInputImpl object as a java.sql.Time object.
readTimestamp() - Method in class javax.sql.rowset.serial.SQLInputImpl
Retrieves the next attribute in this SQLInputImpl object as a java.sql.Timestamp object.
readURL() - Method in class javax.sql.rowset.serial.SQLInputImpl
Reads an SQL DATALINK value from the stream and returns it as an URL object in the Java programming language.
readXML(WebRowSet, Reader) - Method in class com.sun.rowset.internal.WebRowSetXmlReader
Parses the given WebRowSet object, getting its input from the given java.io.Reader object.
readXML(WebRowSet, InputStream) - Method in class com.sun.rowset.internal.WebRowSetXmlReader
Parses the given WebRowSet object, getting its input from the given java.io.InputStream object.
readXML(WebRowSet, Reader) - Method in interface javax.sql.rowset.spi.XmlReader
Reads and parses the given WebRowSet object from the given input stream in XML format.
readXml(Reader) - Method in class com.sun.rowset.JoinRowSetImpl
Reads this JoinRowSet object in its XML format.
readXml(InputStream) - Method in class com.sun.rowset.JoinRowSetImpl
Reads a stream based XML input to populate an WebRowSet
readXml(Reader) - Method in class com.sun.rowset.WebRowSetImpl
Reads this WebRowSet object in its XML format.
readXml(InputStream) - Method in class com.sun.rowset.WebRowSetImpl
Reads a stream based XML input to populate this WebRowSet object.
readXml(Reader) - Method in interface javax.sql.rowset.WebRowSet
Reads a WebRowSet object in its XML format from the given Reader object.
readXml(InputStream) - Method in interface javax.sql.rowset.WebRowSet
Reads a stream based XML input to populate this WebRowSet object.
refreshRow() - Method in class com.sun.rowset.CachedRowSetImpl
Sets the current row with its original value and marks the row as not updated, thus undoing any changes made to the row since the last call to the methods updateRow or deleteRow.
refreshRow() - Method in class com.sun.rowset.JdbcRowSetImpl
Refreshes the current row of this rowset's ResultSet object with its most recent value in the database.
refreshRow() - Method in class com.sun.rowset.JoinRowSetImpl
Sets the current row with its original value and marks the row as not updated, thus undoing any changes made to the row since the last call to the methods updateRow or deleteRow.
refreshRow() - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the current row with its original value and marks the row as not updated, thus undoing any changes made to the row since the last call to the methods updateRow or deleteRow.
refreshRow() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
refreshRow() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
registerProvider(String) - Static method in class javax.sql.rowset.spi.SyncFactory
Adds the the given synchronization provider to the factory register.
relative(int) - Method in class com.sun.rowset.CachedRowSetImpl
Moves the cursor the specified number of rows from the current position, with a positive number moving it forward and a negative number moving it backward.
relative(int) - Method in class com.sun.rowset.FilteredRowSetImpl
Moves the cursor the specified number of rows from the current position, with a positive number moving it forward and a negative number moving it backward.
relative(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Moves the cursor a relative number of rows, either positive or negative.
relative(int) - Method in class com.sun.rowset.JoinRowSetImpl
Moves the cursor the specified number of rows from the current position, with a positive number moving it forward and a negative number moving it backward.
relative(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Moves the cursor the specified number of rows from the current position, with a positive number moving it forward and a negative number moving it backward.
relative(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
relative(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
release() - Method in class com.sun.rowset.CachedRowSetImpl
Releases the current contents of this CachedRowSetImpl object and sends a rowSetChanged event object to all registered listeners.
release() - Method in class com.sun.rowset.internal.SyncResolverImpl
Releases the current contents of this CachedRowSetImpl object and sends a rowSetChanged event object to all registered listeners.
release() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Releases the current contents of this CachedRowSet object and sends a rowSetChanged event to all registered listeners. Any outstanding updates are discarded and the rowset contains no rows after this method is called. There are no interactions with the underlying data source, and any rowset content, metadata, and content updates should be non-recoverable.

This CachedRowSet object should lock until its contents and associated updates are fully cleared, thus preventing 'dirty' reads by other components that hold a reference to this RowSet object. In addition, the contents cannot be released until all all components reading this CachedRowSet object have completed their reads. This CachedRowSet object should be returned to normal behavior after firing the rowSetChanged event.

The metadata, including JDBC properties and Synchronization SPI properties, are maintained for future use. It is important that properties such as the command property be relevant to the originating data source from which this CachedRowSet object was originally established.

This method empties a rowset, as opposed to the close method, which marks the entire rowset as recoverable to allow the garbage collector the rowset's Java VM resources.

release() - Method in interface javax.sql.rowset.CachedRowSet
Releases the current contents of this CachedRowSet object and sends a rowSetChanged event to all registered listeners.
releaseSavepoint(Savepoint) - Method in interface com.sun.sql.rowset.JdbcRowSetX
Removes the given Savepoint object from the current transaction.
releaseSavepoint(Savepoint) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
removeCurrentRow() - Method in class com.sun.rowset.CachedRowSetImpl
Removes the row on which the cursor is positioned.
removeCurrentRow() - Method in class com.sun.rowset.internal.SyncResolverImpl
Removes the row on which the cursor is positioned.
removeCurrentRow() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Removes the row on which the cursor is positioned.
removePropertyChangeListener(PropertyChangeListener) - Method in interface com.sun.sql.rowset.CachedRowSetX
Remove a PropertyChangeListener from the listener list.
removePropertyChangeListener(String, PropertyChangeListener) - Method in interface com.sun.sql.rowset.CachedRowSetX
Remove a PropertyChangeListener for a specific property.
removePropertyChangeListener(PropertyChangeListener) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Deprecated.  
removePropertyChangeListener(String, PropertyChangeListener) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Remove a PropertyChangeListener for a specific property.
removePropertyChangeListener(PropertyChangeListener) - Method in interface com.sun.sql.rowset.JdbcRowSetX
Remove a PropertyChangeListener from the listener list.
removePropertyChangeListener(String, PropertyChangeListener) - Method in interface com.sun.sql.rowset.JdbcRowSetX
Remove a PropertyChangeListener for a specific property.
removePropertyChangeListener(PropertyChangeListener) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
removePropertyChangeListener(String, PropertyChangeListener) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
removeRowSetListener(RowSetListener) - Method in class javax.sql.rowset.BaseRowSet
Removes the designated object from this RowSet object's list of listeners.
reset() - Method in class com.sun.rowset.internal.CachedRowSetReader
Checks to see if the writer associated with this reader needs to reset its state.
resolveEntity(String, String) - Method in class com.sun.rowset.internal.XmlResolver
 
restoreOriginal() - Method in class com.sun.rowset.CachedRowSetImpl
Restores this CachedRowSetImpl object to its original state, that is, its state before the last set of changes.
restoreOriginal() - Method in class com.sun.rowset.internal.SyncResolverImpl
Restores this CachedRowSetImpl object to its original state, that is, its state before the last set of changes.
restoreOriginal() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Restores this CachedRowSet object to its original value, that is, its value before the last set of changes. If there have been no changes to the rowset or only one set of changes, the original value is the value with which this CachedRowSet object was populated; otherwise, the original value is the value it had immediately before its current value.

When this method is called, a CachedRowSet implementation must ensure that all updates, inserts, and deletes to the current rowset instance are replaced by the previous values. In addition, the cursor should be reset to the first row and a rowSetChanged event should be fired to notify all registered listeners.

restoreOriginal() - Method in interface javax.sql.rowset.CachedRowSet
Restores this CachedRowSet object to its original value, that is, its value before the last set of changes.
rollback() - Method in class com.sun.rowset.CachedRowSetImpl
Rolls back all changes performed by the acceptChanges() methods
rollback(Savepoint) - Method in class com.sun.rowset.CachedRowSetImpl
Rolls back all changes performed by the acceptChanges() to the last Savepoint transaction marker.
rollback() - Method in class com.sun.rowset.JdbcRowSetImpl
Rolls back all the updates in this JdbcRowSet object by wrapping the internal Connection object and calling its rollback method.
rollback(Savepoint) - Method in class com.sun.rowset.JdbcRowSetImpl
Rollbacks all the updates in the JdbcRowSet back to the last Savepoint transaction marker.
rollback() - Method in class com.sun.rowset.internal.CachedRowSetWriter
 
rollback(Savepoint) - Method in class com.sun.rowset.internal.CachedRowSetWriter
 
rollback() - Method in class com.sun.rowset.internal.SyncResolverImpl
Rolls back all changes performed by the acceptChanges() methods
rollback(Savepoint) - Method in class com.sun.rowset.internal.SyncResolverImpl
Rolls back all changes performed by the acceptChanges() to the last Savepoint transaction marker.
rollback() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
rollback(Savepoint) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
rollback() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
rollback(Savepoint) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
rollback() - Method in interface javax.sql.rowset.CachedRowSet
Each CachedRowSet object's SyncProvider contains a Connection object from the original ResultSet or JDBC properties passed to it.
rollback(Savepoint) - Method in interface javax.sql.rowset.CachedRowSet
Each CachedRowSet object's SyncProvider contains a Connection object from the original ResultSet or JDBC properties passed to it.
rollback() - Method in interface javax.sql.rowset.JdbcRowSet
Each JdbcRowSet contains a Connection object from the original ResultSet or JDBC properties passed to it.
rollback(Savepoint) - Method in interface javax.sql.rowset.JdbcRowSet
Each JdbcRowSet contains a Connection object from the original ResultSet or JDBC properties passed to it.
rollback() - Method in interface javax.sql.rowset.spi.TransactionalWriter
Undoes all changes made in the current transaction.
rollback(Savepoint) - Method in interface javax.sql.rowset.spi.TransactionalWriter
Undoes all changes made in the current transaction made prior to the given Savepoint object.
rowDeleted() - Method in class com.sun.rowset.CachedRowSetImpl
Indicates whether the current row has been deleted.
rowDeleted() - Method in class com.sun.rowset.JdbcRowSetImpl
Indicates whether a row has been deleted.
rowDeleted() - Method in class com.sun.rowset.JoinRowSetImpl
Indicates whether the current row has been deleted.
rowDeleted() - Method in class com.sun.rowset.internal.SyncResolverImpl
Indicates whether the current row has been deleted.
rowDeleted() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
rowDeleted() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
rowInserted() - Method in class com.sun.rowset.CachedRowSetImpl
Indicates whether the current row has been inserted.
rowInserted() - Method in class com.sun.rowset.JdbcRowSetImpl
Indicates whether the current row has had an insertion.
rowInserted() - Method in class com.sun.rowset.JoinRowSetImpl
Indicates whether the current row has been inserted.
rowInserted() - Method in class com.sun.rowset.internal.SyncResolverImpl
Indicates whether the current row has been inserted.
rowInserted() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
rowInserted() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
rowSetPopulated(RowSetEvent, int) - Method in class com.sun.rowset.CachedRowSetImpl
Notifies registered listeners that a RowSet object in the given RowSetEvent object has populated a number of additional rows.
rowSetPopulated(RowSetEvent, int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Notifies registered listeners that a RowSet object in the given RowSetEvent object has populated a number of additional rows.
rowSetPopulated(RowSetEvent, int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
rowSetPopulated(RowSetEvent, int) - Method in interface javax.sql.rowset.CachedRowSet
Notifies registered listeners that a RowSet object in the given RowSetEvent object has populated a number of additional rows.
rowUpdated() - Method in class com.sun.rowset.CachedRowSetImpl
Indicates whether the current row of this CachedRowSetImpl object has been updated.
rowUpdated() - Method in class com.sun.rowset.JdbcRowSetImpl
Indicates whether the current row has been updated.
rowUpdated() - Method in class com.sun.rowset.JoinRowSetImpl
Indicates whether the current row of this JoinRowSetImpl object has been updated.
rowUpdated() - Method in class com.sun.rowset.internal.SyncResolverImpl
Indicates whether the current row of this CachedRowSetImpl object has been updated.
rowUpdated() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
rowUpdated() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 

S

SCHEMA_SYSTEM_ID - Static variable in interface javax.sql.rowset.WebRowSet
The URL for the XML Schema definition file that defines the XML tags and their valid values for a WebRowSet implementation.
SQLInputImpl - class javax.sql.rowset.serial.SQLInputImpl.
An input stream used for custom mapping user-defined types (UDTs).
SQLInputImpl(Object[], Map) - Constructor for class javax.sql.rowset.serial.SQLInputImpl
Creates an SQLInputImpl object initialized with the given array of attributes and the given type map.
SQLOutputImpl - class javax.sql.rowset.serial.SQLOutputImpl.
The output stream for writing the attributes of a custom-mapped user-defined type (UDT) back to the database.
SQLOutputImpl(Vector, Map) - Constructor for class javax.sql.rowset.serial.SQLOutputImpl
Creates a new SQLOutputImpl object initialized with the given vector of attributes and type map.
SerialArray - class javax.sql.rowset.serial.SerialArray.
A serializable mapping in the Java programming language of an SQL ARRAY value.
SerialArray(Array, Map) - Constructor for class javax.sql.rowset.serial.SerialArray
Constructs a new SerialArray object from the given Array object, using the given type map for the custom mapping of each element when the elements are SQL UDTs.
SerialArray(Array) - Constructor for class javax.sql.rowset.serial.SerialArray
Constructs a new SerialArray object from the given Array object.
SerialBlob - class javax.sql.rowset.serial.SerialBlob.
A serializable mapping in the Java programming language of an SQL BLOB value.
SerialBlob(byte[]) - Constructor for class javax.sql.rowset.serial.SerialBlob
Constructs a SerialBlob object that is serializable version of the given byte array.
SerialBlob(Blob) - Constructor for class javax.sql.rowset.serial.SerialBlob
Constructs a SerialBlob object that is a serializable version of the given Blob object.
SerialClob - class javax.sql.rowset.serial.SerialClob.
A serializable mapping in the Java programming language of an SQL CLOB value.
SerialClob(char[]) - Constructor for class javax.sql.rowset.serial.SerialClob
Constructs a SerialClob that is serializable version of a char[] array.
SerialClob(Clob) - Constructor for class javax.sql.rowset.serial.SerialClob
Constructs a SerialClob object that is a serializable version of the given Clob object.
SerialDatalink - class javax.sql.rowset.serial.SerialDatalink.
A serializable mapping in the Java programming language of an SQL DATALINK value.
SerialDatalink(URL) - Constructor for class javax.sql.rowset.serial.SerialDatalink
Constructs a new SerialDatalink object from the given java.net.URL object.
SerialException - exception javax.sql.rowset.serial.SerialException.
Indicates and an error with the serialization or de-serialization of SQL types such as BLOB, CLOB, STRUCT or ARRAY in addition to SQL types such as DATALINK and JAVAOBJECT
SerialException() - Constructor for class javax.sql.rowset.serial.SerialException
Creates a new SerialException without a message.
SerialException(String) - Constructor for class javax.sql.rowset.serial.SerialException
Creates a new SerialException with the specified message.
SerialJavaObject - class javax.sql.rowset.serial.SerialJavaObject.
A serializable mapping in the Java programming language of an SQL JAVA_OBJECT value.
SerialJavaObject(Object) - Constructor for class javax.sql.rowset.serial.SerialJavaObject
Constructor for SerialJavaObject helper class.
SerialRef - class javax.sql.rowset.serial.SerialRef.
A serializable mapping between the SQL REF type and the Java programming language.
SerialRef(Ref) - Constructor for class javax.sql.rowset.serial.SerialRef
Constructs the SerialRef object given any Ref object instance.
SerialStruct - class javax.sql.rowset.serial.SerialStruct.
A serializable mapping in the Java programming language of an SQL structured type.
SerialStruct(Struct, Map) - Constructor for class javax.sql.rowset.serial.SerialStruct
Constructs a SerialStruct object from the given Struct object, using the given java.util.Map object for custom mapping the SQL structured type or any of its attributes that are SQL structured types.
SerialStruct(SQLData, Map) - Constructor for class javax.sql.rowset.serial.SerialStruct
Constructs a SerialStruct object from the given SQLData object, using the given type map to custom map it to a class in the Java programming language.
SyncFactory - class javax.sql.rowset.spi.SyncFactory.
The Service Provider Interface (SPI) mechanism that generates SyncProvider instances to be used by disconnected RowSet objects.
SyncFactoryException - exception javax.sql.rowset.spi.SyncFactoryException.
Indicates an error with SyncFactory mechanism.
SyncFactoryException() - Constructor for class javax.sql.rowset.spi.SyncFactoryException
Creates new SyncFactoryException without detail message.
SyncFactoryException(String) - Constructor for class javax.sql.rowset.spi.SyncFactoryException
Constructs an SyncFactoryException with the specified detail message.
SyncProvider - class javax.sql.rowset.spi.SyncProvider.
The synchronization mechanism that provides reader/writer capabilities for disconnected RowSet objects.
SyncProvider() - Constructor for class javax.sql.rowset.spi.SyncProvider
Creates a default SyncProvider object.
SyncProviderException - exception javax.sql.rowset.spi.SyncProviderException.
Indicates an error with the SyncProvider mechanism.
SyncProviderException() - Constructor for class javax.sql.rowset.spi.SyncProviderException
Creates a new SyncProviderException object without a detail message.
SyncProviderException(String) - Constructor for class javax.sql.rowset.spi.SyncProviderException
Constructs a SyncProviderException object with the specified detail message.
SyncProviderException(SyncResolver) - Constructor for class javax.sql.rowset.spi.SyncProviderException
Constructs a SyncProviderException object with the specified SyncResolver instance.
SyncResolver - interface javax.sql.rowset.spi.SyncResolver.
Defines a framework that allows applications to use a manual decision tree to decide what should be done when a synchronization conflict occurs.
SyncResolverImpl - class com.sun.rowset.internal.SyncResolverImpl.
There will be two sets of data which will be maintained by the rowset at the time of synchronization.
SyncResolverImpl() - Constructor for class com.sun.rowset.internal.SyncResolverImpl
Public constructor
SyncResolverX - interface com.sun.sql.rowset.SyncResolverX.
Extends javax.sql.rowset.spi.SyncResolver so that SQLExceptions for each conflict can be retrieved.
setArray(int, Array) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to an Array object in the Java programming language.
setAsciiStream(int, InputStream, int) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.io.InputStream object, which will have the specified number of bytes.
setAsciiStream(long) - Method in class javax.sql.rowset.serial.SerialClob
Retrieves a stream to be used to write Ascii characters to the CLOB value that this Clob object represents, starting at position pos.
setAutoCommit(boolean) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets auto-commit on the internal Connection object with this JdbcRowSet
setAutoCommit(boolean) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
setAutoCommit(boolean) - Method in interface javax.sql.rowset.JdbcRowSet
Each JdbcRowSet contains a Connection object from the original ResultSet or JDBC properties passed to it.
setAutoIncrement(int, boolean) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Sets whether the designated column is automatically numbered, thus read-only, to the given boolean value.
setBigDecimal(int, BigDecimal) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.lang.BigDecimal value.
setBinaryStream(int, InputStream, int) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.io.InputStream object, which will have the specified number of bytes.
setBinaryStream(long) - Method in class javax.sql.rowset.serial.SerialBlob
Retrieves a stream that can be used to write to the BLOB value that this Blob object represents.
setBlob(int, Blob) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given Blob object in the Java programming language.
setBoolean(int, boolean) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given boolean in the Java programming language.
setByte(int, byte) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given byte in the Java programming language.
setBytes(int, byte[]) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given array of bytes.
setBytes(long, byte[]) - Method in class javax.sql.rowset.serial.SerialBlob
Writes the given array of bytes to the BLOB value that this Blob object represents, starting at position pos, and returns the number of bytes written.
setBytes(long, byte[], int, int) - Method in class javax.sql.rowset.serial.SerialBlob
Writes all or part of the given byte array to the BLOB value that this Blob object represents and returns the number of bytes written.
setCaseSensitive(int, boolean) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Sets whether the name of the designated column is case sensitive to the given boolean.
setCatalogName(String) - Method in interface com.sun.sql.rowset.CachedRowSetX
Sets the identifier for catalog of the table referred to in the tableName property.
setCatalogName(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Sets the identifier for catalog of the table referred to in the tableName property. The writer uses this name to determine which table to use when comparing the values in the data source with the CachedRowSetX object's values during a synchronization attempt. The catalogName property also indicates where modified values from this CachedRowSetX object should be written.

The implementation of this CachedRowSetX object may obtain the the name internally from the RowSetMetaDataXImpl object.

Note: This method is called by com.sun.sql.rowset.internal.CachedRowSetXWriter.

setCatalogName(int, String) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Sets the catalog name of the table from which the designated column was derived to catalogName.
setCharacterStream(int, Reader, int) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.io.Reader object, which will have the specified number of characters.
setCharacterStream(long) - Method in class javax.sql.rowset.serial.SerialClob
Retrieves a stream to be used to write a stream of Unicode characters to the CLOB value that this Clob object represents, at position pos.
setClob(int, Clob) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given Clob object in the Java programming language.
setColumnCatalogNames(String[]) - Method in interface com.sun.sql.rowset.CachedRowSetX
Set the columnCatalogNames property.
setColumnCatalogNames(int, String) - Method in interface com.sun.sql.rowset.CachedRowSetX
Set the columnCatalogNames property.
setColumnCatalogNames(String[]) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Set the columnCatalogNames property.
setColumnCatalogNames(int, String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Set the columnCatalogNames property.
setColumnClassName(int, String) - Method in interface com.sun.sql.rowset.RowSetMetaDataX
 
setColumnClassName(int, String) - Method in class com.sun.sql.rowset.RowSetMetaDataXImpl
 
setColumnCount(int) - Method in class com.sun.sql.rowset.RowSetMetaDataXImpl
 
setColumnCount(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Sets to the given number the number of columns in the RowSet object for which this RowSetMetaDataImpl object was created.
setColumnDisplaySize(int, int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Sets the normal maximum number of chars in the designated column to the given number.
setColumnLabel(int, String) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Sets the suggested column label for use in printouts and displays, if any, to label.
setColumnName(int, String) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Sets the column name of the designated column to the given name.
setColumnNames(String[]) - Method in interface com.sun.sql.rowset.CachedRowSetX
Set the columnNames property.
setColumnNames(int, String) - Method in interface com.sun.sql.rowset.CachedRowSetX
Set the columnNames property.
setColumnNames(String[]) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Set the columnNames property.
setColumnNames(int, String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Set the columnNames property.
setColumnObject(int, Object) - Method in class com.sun.rowset.internal.BaseRow
Sets the element at the given index into this row's array of original values to the given value.
setColumnObject(int, Object) - Method in class com.sun.rowset.internal.InsertRow
Sets the element in this InsertRow object's internal array of original values that corresponds to the designated column with the given value.
setColumnObject(int, Object) - Method in class com.sun.rowset.internal.Row
This method is called internally by the CachedRowSet.updateXXX methods.
setColumnSchemaNames(String[]) - Method in interface com.sun.sql.rowset.CachedRowSetX
Set the columnSchemaNames property.
setColumnSchemaNames(int, String) - Method in interface com.sun.sql.rowset.CachedRowSetX
Set the columnSchemaNames property.
setColumnSchemaNames(String[]) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Set the columnSchemaNames property.
setColumnSchemaNames(int, String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Set the columnSchemaNames property.
setColumnTableNames(String[]) - Method in interface com.sun.sql.rowset.CachedRowSetX
Set the columnTableNames property.
setColumnTableNames(int, String) - Method in interface com.sun.sql.rowset.CachedRowSetX
Set the columnTableNames property.
setColumnTableNames(String[]) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Set the columnTableNames property.
setColumnTableNames(int, String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Set the columnTableNames property.
setColumnType(int, int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Sets the SQL type code for values stored in the designated column to the given type code from the class java.sql.Types.
setColumnTypeName(int, String) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Sets the type name used by the data source for values stored in the designated column to the given type name.
setCommand(String) - Method in class com.sun.rowset.CachedRowSetImpl
Sets this CachedRowSetImpl object's command property to the given String object and clears the parameters, if any, that were set for the previous command.
setCommand(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets this JdbcRowSet object's command property to the given String object and clears the parameters, if any, that were set for the previous command.
setCommand(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets this CachedRowSetImpl object's command property to the given String object and clears the parameters, if any, that were set for the previous command.
setCommand(String) - Method in class com.sun.sql.rowset.BaseRowSetX
Sets this RowSet object's command property to the given String object and clears the parameters, if any, that were set for the previous command.
setCommand(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Sets this RowSet object's command property to the given String object and clears the parameters, if any, that were set for the previous command.

The command property may not be needed if the RowSet object gets its data from a source that does not support commands, such as a spreadsheet or other tabular file. Thus, this property is optional and may be null.

setCommand(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
setCommand(String) - Method in class javax.sql.rowset.BaseRowSet
Sets this RowSet object's command property to the given String object and clears the parameters, if any, that were set for the previous command.
setConcurrency(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the concurrency for this RowSet object to the specified concurrency.
setConcurrency(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Sets the concurrency for this RowSet object to the specified concurrency. The default concurrency for any RowSet object (connected or disconnected) is ResultSet.CONCUR_UPDATABLE, but this method may be called at any time to change the concurrency.

setConcurrency(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
setConcurrency(int) - Method in class javax.sql.rowset.BaseRowSet
Sets the concurrency for this RowSet object to the specified concurrency.
setConnection(Connection) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets this JdbcRowSet object's connection property to the given Connection object.
setCurrency(int, boolean) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Sets whether a value stored in the designated column is a cash value to the given boolean.
setDataSourceLock(int) - Method in class com.sun.rowset.providers.RIOptimisticProvider
Modifies the data source lock severity according to the standard SyncProvider classifications.
setDataSourceLock(int) - Method in class com.sun.rowset.providers.RIXMLProvider
Throws an unsupported operation exception as this method does function with non-locking XML data sources.
setDataSourceLock(int) - Method in class javax.sql.rowset.spi.SyncProvider
Sets a lock on the underlying data source at the level indicated by datasource_lock.
setDataSourceName(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the dataSourceName property for this JdbcRowSet object to the given logical name and sets this JdbcRowSet object's Url property to null.
setDataSourceName(String) - Method in class com.sun.sql.rowset.BaseRowSetX
Sets the DataSource name property for this RowSet object to the given logical name and sets this RowSet object's Url property to null.
setDataSourceName(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Sets the DataSource name property for this RowSet object to the given logical name and sets this RowSet object's Url property to null. The name must have been bound to a DataSource object in a JNDI naming service so that an application can do a lookup using that name to retrieve the DataSource object bound to it. The DataSource object can then be used to establish a connection to the data source it represents.

Users should set either the Url property or the dataSourceName property. If both properties are set, the driver will use the property set most recently.

setDataSourceName(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
setDataSourceName(String) - Method in class javax.sql.rowset.BaseRowSet
Sets the DataSource name property for this RowSet object to the given logical name and sets this RowSet object's Url property to null.
setDate(int, Date) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.sql.Date value.
setDate(int, Date, Calendar) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.sql.Date object.
setDefinitelyWritable(int, boolean) - Method in interface com.sun.sql.rowset.RowSetMetaDataX
 
setDefinitelyWritable(int, boolean) - Method in class com.sun.sql.rowset.RowSetMetaDataXImpl
 
setDeleted() - Method in class com.sun.rowset.internal.Row
Sets this Row object's deleted field to true.
setDouble(int, double) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given double in the Java programming language.
setEscapeProcessing(boolean) - Method in class javax.sql.rowset.BaseRowSet
Sets to the given boolean whether or not the driver will scan for escape syntax and do escape substitution before sending SQL statements to the database.
setFetchDirection(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gives a hint as to the direction in which the rows in this ResultSet object will be processed.
setFetchDirection(int) - Method in class com.sun.sql.rowset.BaseRowSetX
Gives the driver a performance hint as to the direction in which the rows in this RowSet object will be processed.
setFetchDirection(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
setFetchDirection(int) - Method in class javax.sql.rowset.BaseRowSet
Gives the driver a performance hint as to the direction in which the rows in this RowSet object will be processed.
setFetchSize(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed for this ResultSet object.
setFetchSize(int) - Method in class com.sun.sql.rowset.BaseRowSetX
Sets the fetch size for this RowSet object to the given number of rows.
setFetchSize(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
setFetchSize(int) - Method in class javax.sql.rowset.BaseRowSet
Sets the fetch size for this RowSet object to the given number of rows.
setFilter(Predicate) - Method in class com.sun.rowset.FilteredRowSetImpl
Apply the predicate for this filter
setFilter(Predicate) - Method in interface javax.sql.rowset.FilteredRowSet
Apply Predicate object to a FilteredRowSet object.
setFloat(int, float) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given float in the Java programming language.
setHoldability(int) - Method in interface com.sun.sql.rowset.JdbcRowSetX
Changes the holdability of this JdbcRowSetX object to the given holdability.
setHoldability(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
setInsertableColumns(boolean[]) - Method in interface com.sun.sql.rowset.CachedRowSetX
Set the insertableColumns property.
setInsertableColumns(int, boolean) - Method in interface com.sun.sql.rowset.CachedRowSetX
Set the insertableColumns property.
setInsertableColumns(boolean[]) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Set the insertableColumns property.
setInsertableColumns(int, boolean) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Set the insertableColumns property.
setInserted() - Method in class com.sun.rowset.internal.Row
Sets the value of this Row object's inserted field to true.
setInt(int, int) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to an int in the Java programming language.
setJNDIContext(Context) - Static method in class javax.sql.rowset.spi.SyncFactory
Sets the initial JNDI context from which SyncProvider implementations can be retrieved from a JNDI namespace
setJoinType(int) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the type of SQL JOIN that this JoinRowSet object will use.
setJoinType(int) - Method in interface javax.sql.rowset.JoinRowSet
Allow the application to adjust the type of JOIN imposed on tables contained within the JoinRowSet object instance.
setKeyColumns(int[]) - Method in class com.sun.rowset.CachedRowSetImpl
Sets this CachedRowSetImpl object's keyCols field with the given array of column numbers, which forms a key for uniquely identifying a row in this rowset.
setKeyColumns(int[]) - Method in class com.sun.rowset.JoinRowSetImpl
Sets this JoinRowSetImpl object's keyCols field with the given array of column numbers, which forms a key for uniquely identifying a row in this rowset.
setKeyColumns(int[]) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets this CachedRowSetImpl object's keyCols field with the given array of column numbers, which forms a key for uniquely identifying a row in this rowset.
setKeyColumns(int[]) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
setKeyColumns(int[]) - Method in interface javax.sql.rowset.CachedRowSet
Sets this CachedRowSet object's keyCols field with the given array of column numbers, which forms a key for uniquely identifying a row in this rowset.
setLogger(Logger) - Static method in class javax.sql.rowset.spi.SyncFactory
Sets the logging object to be used by the SyncProvider implementation provided by the SyncFactory.
setLogger(Logger, Level) - Static method in class javax.sql.rowset.spi.SyncFactory
Sets the logging object that is used by SyncProvider implementations provided by the SyncFactory SPI.
setLong(int, long) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given long in the Java programming language.
setMatchColumn(int[]) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated parameter to the given int array.
setMatchColumn(String[]) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated parameter to the given String array.
setMatchColumn(int) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated parameter to the given int object.
setMatchColumn(String) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated parameter to the given String object.
setMatchColumn(int[]) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the designated parameter to the given int array.
setMatchColumn(String[]) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the designated parameter to the given String array.
setMatchColumn(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the designated parameter to the given int object.
setMatchColumn(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the designated parameter to the given String object.
setMatchColumn(int[]) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated parameter to the given int array.
setMatchColumn(String[]) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated parameter to the given String array.
setMatchColumn(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated parameter to the given int object.
setMatchColumn(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated parameter to the given String object.
setMatchColumn(int[]) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
setMatchColumn(String[]) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
setMatchColumn(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
setMatchColumn(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
setMatchColumn(int[]) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
Sets the designated parameter to the given int array.
setMatchColumn(String[]) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
Sets the designated parameter to the given String array.
setMatchColumn(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
Sets the designated parameter to the given int object.
setMatchColumn(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
Sets the designated parameter to the given String object.
setMatchColumn(int) - Method in interface javax.sql.rowset.Joinable
Sets the designated column as the match column for this RowSet object.
setMatchColumn(int[]) - Method in interface javax.sql.rowset.Joinable
Sets the designated columns as the match column for this RowSet object.
setMatchColumn(String) - Method in interface javax.sql.rowset.Joinable
Sets the designated column as the match column for this RowSet object.
setMatchColumn(String[]) - Method in interface javax.sql.rowset.Joinable
Sets the designated columns as the match column for this RowSet object.
setMaxFieldSize(int) - Method in class javax.sql.rowset.BaseRowSet
Sets the maximum number of bytes that can be used for a column value in this RowSet object to the given number.
setMaxRows(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the maximum number of rows that this RowSet object may contain to the given number.
setMaxRows(int) - Method in class com.sun.sql.rowset.BaseRowSetX
Sets the maximum number of rows that this RowSet object may contain to the given number.
setMaxRows(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Sets the maximum number of rows that this RowSet object may contain to the given number. If this limit is exceeded, the excess rows are silently dropped.
setMaxRows(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
setMaxRows(int) - Method in class javax.sql.rowset.BaseRowSet
Sets the maximum number of rows that this RowSet object may contain to the given number.
setMetaData(RowSetMetaData) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the metadata for this CachedRowSetImpl object with the given RowSetMetaData object.
setMetaData(RowSetMetaData) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the metadata for this JoinRowSetImpl object with the given RowSetMetaData object.
setMetaData(RowSetMetaData) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the metadata for this CachedRowSetImpl object with the given RowSetMetaData object.
setMetaData(RowSetMetaData) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
setMetaData(RowSetMetaData) - Method in interface javax.sql.rowset.CachedRowSet
Sets the metadata for this CachedRowSet object with the given RowSetMetaData object.
setNextWarning(RowSetWarning) - Method in class javax.sql.rowset.RowSetWarning
Sets warning as the next warning, that is, the warning chained to this RowSetWarning object.
setNull(int, int) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to SQL NULL.
setNull(int, int, String) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to SQL NULL.
setNullable(int, int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Sets whether a value stored in the designated column can be set to NULL to the given constant from the interface ResultSetMetaData.
setObject(int, Object, int, int) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to an Object in the Java programming language.
setObject(int, Object, int) - Method in class javax.sql.rowset.BaseRowSet
Sets the value of the designated parameter with the given Object value.
setObject(int, Object) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to an Object in the Java programming language.
setObject(Object) - Method in class javax.sql.rowset.serial.SerialRef
Set object to be referenced.
setOriginal() - Method in class com.sun.rowset.CachedRowSetImpl
Marks all rows in this rowset as being original rows.
setOriginal() - Method in class com.sun.rowset.internal.SyncResolverImpl
Marks all rows in this rowset as being original rows.
setOriginal() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
setOriginalRow() - Method in class com.sun.rowset.CachedRowSetImpl
Marks the current row in this rowset as being an original row.
setOriginalRow() - Method in class com.sun.rowset.JoinRowSetImpl
Returns a result set containing the original value of the current row only.
setOriginalRow() - Method in class com.sun.rowset.internal.SyncResolverImpl
Marks the current row in this rowset as being an original row.
setOriginalRow() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
setOriginalRow() - Method in interface javax.sql.rowset.CachedRowSet
Sets the current row in this CachedRowSet object as the original row.
setPageSize(int) - Method in class com.sun.rowset.CachedRowSetImpl
This is the setter function for setting the size of the page, which specifies how many rows have to be retrived at a time.
setPageSize(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
This is the setter function for setting the size of the page, which specifies how many rows have to be retrived at a time.
setPageSize(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
setPageSize(int) - Method in interface javax.sql.rowset.CachedRowSet
Sets the CachedRowSet object's page-size.
setParams() - Method in class com.sun.rowset.JdbcRowSetImpl
 
setPassword(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the password property for this JdbcRowSet object to the given String object.
setPassword(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Sets the password used to create a database connection for this RowSet object to the given String object. Because the password property is not serialized, it is set at run time before calling the method execute.
setPassword(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
setPassword(String) - Method in class javax.sql.rowset.BaseRowSet
Sets the password used to create a database connection for this RowSet object to the given String object.
setPrecision(int, int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Sets the total number of decimal digits in a value stored in the designated column to the given number.
setPreparedStatement(PreparedStatement) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets this JdbcRowSet object's preparedtsatement property to the given PreparedStatemennt object.
setPrintStatements(boolean) - Method in interface com.sun.sql.rowset.CachedRowSetX
Sets the printStatements property.
setPrintStatements(boolean) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Sets the printStatements property. If this property is true, SQL Insert, UPDATE and DELETE statements will be written to System.out. This property is intended to be set when debugging problems inserting, updating and deleting. With the information gained from examining the output, it is intended that one can set the other advanced properties on the CachedRowSetX to "fix" the SQL statements being generated. In this way, some JDBC driver problems can be overcome.

setProperties(PreparedStatement) - Method in class com.sun.rowset.JdbcRowSetImpl
 
setQueryTimeout(int) - Method in class javax.sql.rowset.BaseRowSet
Sets to the given number the maximum number of seconds the driver will wait for a query to execute.
setReadOnly(boolean) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Sets this RowSet object's readOnly property to the given boolean.
setReadOnly(int, boolean) - Method in interface com.sun.sql.rowset.RowSetMetaDataX
 
setReadOnly(int, boolean) - Method in class com.sun.sql.rowset.RowSetMetaDataXImpl
 
setReadOnly(boolean) - Method in class javax.sql.rowset.BaseRowSet
Sets this RowSet object's readOnly property to the given boolean.
setReader(CachedRowSetReader) - Method in class com.sun.rowset.internal.CachedRowSetWriter
Sets the reader for this writer to the given reader.
setRef(int, Ref) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given Ref object in the Java programming language.
setResolvedValue(int, Object) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets obj as the value in column index in the current row of the RowSet object.
setResolvedValue(String, Object) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets obj as the value in column columnName in the current row of the RowSet object.
setResolvedValue(int, Object) - Method in interface javax.sql.rowset.spi.SyncResolver
Sets obj as the value in column index in the current row of the RowSet object that is being synchronized.
setResolvedValue(String, Object) - Method in interface javax.sql.rowset.spi.SyncResolver
Sets obj as the value in column columnName in the current row of the RowSet object that is being synchronized.
setResultSet(ResultSet) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets this JdbcRowSet object's resultset property to the given ResultSet object.
setSavepoint() - Method in interface com.sun.sql.rowset.JdbcRowSetX
Creates an unnamed savepoint in the current transaction and returns the new Savepoint object that represents it.
setSavepoint(String) - Method in interface com.sun.sql.rowset.JdbcRowSetX
Creates a savepoint with the given name in the current transaction and returns the new Savepoint object that represents it.
setSavepoint() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
setSavepoint(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
setScale(int, int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Sets the number of digits to the right of the decimal point in a value stored in the designated column to the given number.
setSchemaName(String) - Method in interface com.sun.sql.rowset.CachedRowSetX
Sets the identifier for schema of the table referred to in the tableName property.
setSchemaName(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Sets the identifier for schema of the table referred to in the tableName property. The writer uses this name to determine which table to use when comparing the values in the data source with the CachedRowSetX object's values during a synchronization attempt. The schemaName property also indicates where modified values from this CachedRowSetX object should be written.

The implementation of this CachedRowSetX object may obtain the the name internally from the RowSetMetaDataXImpl object.

setSchemaName(int, String) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Sets the designated column's table's schema name, if any, to schemaName.
setSearchable(int, boolean) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Sets whether a value stored in the designated column can be used in a WHERE clause to the given boolean value.
setShort(int, short) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given short in the Java programming language.
setShowDeleted(boolean) - Method in class javax.sql.rowset.BaseRowSet
Sets the property showDeleted to the given boolean value, which determines whether rows marked for deletion appear in the set of current rows.
setShowDeleted(boolean) - Method in interface javax.sql.rowset.CachedRowSet
Sets the property showDeleted to the given boolean value, which determines whether rows marked for deletion appear in the set of current rows.
setShowDeleted(boolean) - Method in interface javax.sql.rowset.JdbcRowSet
Sets the property showDeleted to the given boolean value.
setSigned(int, boolean) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Sets whether a value stored in the designated column is a signed number to the given boolean.
setStartPosition(int) - Method in class com.sun.rowset.internal.CachedRowSetReader
This sets the start position in the ResultSet from where to begin.
setString(int, String) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given String value.
setString(long, String) - Method in class javax.sql.rowset.serial.SerialClob
Writes the given Java String to the CLOB value that this Clob object designates at the position pos.
setString(long, String, int, int) - Method in class javax.sql.rowset.serial.SerialClob
Writes len characters of str, starting at character offset, to the CLOB value that this Clob represents.
setSyncProvider(String) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the active SyncProvider and attempts to load load the new provider using the SyncFactory SPI.
setSyncProvider(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the active SyncProvider and attempts to load load the new provider using the SyncFactory SPI.
setSyncProvider(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Sets the SyncProvider objec for this CachedRowSet object to the one specified. This method allows the SyncProvider object to be reset.

A CachedRowSet implementation should always be instantiated with an available SyncProvider mechanism, but there are cases where resetting the SyncProvider object is desirable or necessary. For example, an application might want to use the default SyncProvider object for a time and then choose to use a provider that has more recently become available and better fits its needs.

Resetting the SyncProvider object causes the RowSet object to request a new SyncProvider implementation from the SyncFactory. This has the effect of resetting all previous connections and relationships with the originating data source and can potentially drastically change the synchronization behavior of a disconnected rowset.

setSyncProvider(String) - Method in interface javax.sql.rowset.CachedRowSet
Sets the SyncProvider objec for this CachedRowSet object to the one specified.
setSyncResolver(SyncResolver) - Method in class javax.sql.rowset.spi.SyncProviderException
Sets the SyncResolver object for this SyncProviderException object to the one supplied.
setTableName(String) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the identifier for the table from which this rowset was derived to the given table name.
setTableName(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the identifier for the table from which this rowset was derived to the given table name.
setTableName(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
setTableName(String) - Method in interface javax.sql.rowset.CachedRowSet
Sets the identifier for the table from which this CachedRowSet object was derived to the given table name.
setTableName(int, String) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Sets the name of the table from which the designated column was derived to the given table name.
setTime(int, Time) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.sql.Time value.
setTime(int, Time, Calendar) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.sql.Time object.
setTimestamp(int, Timestamp) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.sql.Timestamp value.
setTimestamp(int, Timestamp, Calendar) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.sql.Timestamp object.
setTransactionIsolation(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the transaction isolation property for this JDBC RowSet object to the given constant.
setTransactionIsolation(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Sets the transaction isolation property for this JDBC RowSet object to the given constant. The DBMS will use this transaction isolation level for transactions if it can.

For RowSet implementations such as the CachedRowSet that operate in a disconnected environment, the SyncProvider object being used offers complementary locking and data integrity options. The options described below are pertinent only to connected RowSet objects (JdbcRowSet objects).

setTransactionIsolation(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
setTransactionIsolation(int) - Method in class javax.sql.rowset.BaseRowSet
Sets the transaction isolation property for this JDBC RowSet object to the given constant.
setType(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the type for this RowSet object to the specified type.
setType(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Sets the type for this RowSet object to the specified type. The default type is ResultSet.TYPE_SCROLL_INSENSITIVE.
setType(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
setType(int) - Method in class javax.sql.rowset.BaseRowSet
Sets the type for this RowSet object to the specified type.
setTypeMap(Map) - Method in class javax.sql.rowset.BaseRowSet
Installs the given java.util.Map object as the type map associated with the Connection object for this RowSet object.
setUpdatableColumns(boolean[]) - Method in interface com.sun.sql.rowset.CachedRowSetX
Set the updatableColumns property.
setUpdatableColumns(int, boolean) - Method in interface com.sun.sql.rowset.CachedRowSetX
Set the updatableColumns property.
setUpdatableColumns(boolean[]) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Set the updatableColumns property.
setUpdatableColumns(int, boolean) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Set the updatableColumns property.
setUpdated() - Method in class com.sun.rowset.internal.Row
Sets the updated field for this Row object to true if one or more of its column values has been changed.
setUrl(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the Url property for this JdbcRowSet object to the given String object and sets the dataSource name property to null.
setUrl(String) - Method in class com.sun.sql.rowset.BaseRowSetX
Sets the Url property for this RowSet object to the given String object and sets the dataSource name property to null.
setUrl(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Sets the Url property for this RowSet object to the given String object and sets the dataSource name property to null. The Url property is a JDBC URL that is used when the connection is created using a JDBC technology-enabled driver ("JDBC driver") and the DriverManager. The correct JDBC URL for the specific driver to be used can be found in the driver documentation. Although there are guidelines for for how a JDBC URL is formed, a driver vendor can specify any String object except one with a length of 0 (an empty string).

Setting the Url property is optional if connections are established using a DataSource object instead of the DriverManager. The driver will use either the URL property or the dataSourceName property to create a connection, whichever was specified most recently. If an application uses a JDBC URL, it must load a JDBC driver that accepts the JDBC URL before it uses the RowSet object to connect to a database. The RowSet object will use the URL internally to create a database connection in order to read or write data.

setUrl(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
setUrl(String) - Method in class javax.sql.rowset.BaseRowSet
Sets the Url property for this RowSet object to the given String object and sets the dataSource name property to null.
setUsername(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the username property for this JdbcRowSet object to the given user name.
setUsername(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Sets the username property for this RowSet object to the given user name. Because it is not serialized, the username property is set at run time before calling the method execute.
setUsername(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
setUsername(String) - Method in class javax.sql.rowset.BaseRowSet
Sets the username property for this RowSet object to the given user name.
setWritable(int, boolean) - Method in interface com.sun.sql.rowset.RowSetMetaDataX
 
setWritable(int, boolean) - Method in class com.sun.sql.rowset.RowSetMetaDataXImpl
 
setXmlReader(XmlReader) - Method in class com.sun.rowset.providers.RIXMLProvider
Sets this WebRowSet object's reader to the given XmlReader object.
setXmlWriter(XmlWriter) - Method in class com.sun.rowset.providers.RIXMLProvider
Sets this WebRowSet object's writer to the given XmlWriter object.
size() - Method in class com.sun.rowset.CachedRowSetImpl
Returns the number of rows in this CachedRowSetImpl object.
size() - Method in class com.sun.rowset.JoinRowSetImpl
Returns the number of rows in this JoinRowSetImpl object.
size() - Method in class com.sun.rowset.internal.SyncResolverImpl
Returns the number of rows in this CachedRowSetImpl object.
size() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Returns the number of rows in this CachedRowSet object.
size() - Method in interface javax.sql.rowset.CachedRowSet
Returns the number of rows in this CachedRowSet object.
startDocument() - Method in class com.sun.rowset.internal.XmlReaderContentHandler
 
startElement(String, String, String, Attributes) - Method in class com.sun.rowset.internal.XmlReaderContentHandler
Sets this XmlReaderContentHandler object's tag field if the given name is the key for a tag and this object's state is not INITIAL.
supportsCrossJoin() - Method in class com.sun.rowset.JoinRowSetImpl
Returns true if this JoinRowSet object supports an SQL CROSS_JOIN and false if it does not.
supportsCrossJoin() - Method in interface javax.sql.rowset.JoinRowSet
Indicates if CROSS_JOIN is supported by a JoinRowSet implementation
supportsFullJoin() - Method in class com.sun.rowset.JoinRowSetImpl
Returns true if this JoinRowSet object supports an SQL FULL_JOIN and false if it does not.
supportsFullJoin() - Method in interface javax.sql.rowset.JoinRowSet
Indicates if FULL_JOIN is supported by a JoinRowSet implementation
supportsInnerJoin() - Method in class com.sun.rowset.JoinRowSetImpl
Returns true if this JoinRowSet object supports an SQL INNER_JOIN and false if it does not.
supportsInnerJoin() - Method in interface javax.sql.rowset.JoinRowSet
Indicates if INNER_JOIN is supported by a JoinRowSet implementation
supportsLeftOuterJoin() - Method in class com.sun.rowset.JoinRowSetImpl
Returns true if this JoinRowSet object supports an SQL LEFT_OUTER_JOIN and false if it does not.
supportsLeftOuterJoin() - Method in interface javax.sql.rowset.JoinRowSet
Indicates if LEFT_OUTER_JOIN is supported by a JoinRowSet implementation
supportsRightOuterJoin() - Method in class com.sun.rowset.JoinRowSetImpl
Returns true if this JoinRowSet object supports an SQL RIGHT_OUTER_JOIN and false if it does not.
supportsRightOuterJoin() - Method in interface javax.sql.rowset.JoinRowSet
Indicates if RIGHT_OUTER_JOIN is supported by a JoinRowSet implementation
supportsUpdatableView() - Method in class com.sun.rowset.providers.RIOptimisticProvider
Returns the supported updatable view abilities of the reference implementation of the SyncProvider abstract class.
supportsUpdatableView() - Method in class com.sun.rowset.providers.RIXMLProvider
Returns the default UPDATABLE_VIEW behavior of this reader
supportsUpdatableView() - Method in class javax.sql.rowset.spi.SyncProvider
Returns whether this SyncProvider implementation can perform synchronization between a RowSet object and the SQL VIEW in the data source from which the RowSet object got its data.

T

TransactionalWriter - interface javax.sql.rowset.spi.TransactionalWriter.
A specialized interface that facilitates an extension of the standard SyncProvider abstract class so that it has finer grained transaction control.
toCachedRowSet() - Method in class com.sun.rowset.JoinRowSetImpl
Creates a separate CachedRowSet object that contains the data in this JoinRowSet object.
toCachedRowSet() - Method in interface javax.sql.rowset.JoinRowSet
Creates a new CachedRowSet object containing the data in this JoinRowSet object, which can be saved to a data source using the SyncProvider object for the CachedRowSet object.
toCollection() - Method in class com.sun.rowset.CachedRowSetImpl
Converts this CachedRowSetImpl object to a collection of tables.
toCollection(int) - Method in class com.sun.rowset.CachedRowSetImpl
Returns the specified column of this CachedRowSetImpl object as a Collection object.
toCollection(String) - Method in class com.sun.rowset.CachedRowSetImpl
Returns the specified column of this CachedRowSetImpl object as a Collection object.
toCollection() - Method in class com.sun.rowset.internal.SyncResolverImpl
Converts this CachedRowSetImpl object to a collection of tables.
toCollection(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Returns the specified column of this CachedRowSetImpl object as a Collection object.
toCollection(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Returns the specified column of this CachedRowSetImpl object as a Collection object.
toCollection() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Converts this CachedRowSet object to a Collection object that contains all of the CachedRowSet object's values. Implementations have some latitude in how they can represent this Collection object because of the abstract nature of the Collection framework. Each row must be fully represented in either a general purpose Collection implementation or a specialized Collection implementation, such as a TreeMap object or a Vector object. An SQL NULL column value must be represented as a null in the Java programming language.

The standard reference implementation for the CachedRowSet interface uses a TreeMap object for the rowset, with the values in each row being contained in Vector objects. It is expected that most implementations will do the same.

The TreeMap type of collection guarantees that the map will be in ascending key order, sorted according to the natural order for the key's class. Each key references a Vector object that corresponds to one row of a RowSet object. Therefore, the size of each Vector object must be exactly equal to the number of columns in the RowSet object. The key used by the TreeMap collection is determined by the implementation, which may choose to leverage a set key that is available within the internal RowSet tabular structure by virtue of a key already set either on the RowSet object itself or on the underlying SQL data.

toCollection(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Converts the designated column in this CachedRowSet object to a Collection object. Implementations have some latitude in how they can represent this Collection object because of the abstract nature of the Collection framework. Each column value should be fully represented in either a general purpose Collection implementation or a specialized Collection implementation, such as a Vector object. An SQL NULL column value must be represented as a null in the Java programming language.

The standard reference implementation uses a Vector object to contain the column values, and it is expected that most implementations will do the same. If a Vector object is used, it size must be exactly equal to the number of rows in this CachedRowSet object.

toCollection(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Converts the designated column in this CachedRowSet object to a Collection object. Implementations have some latitude in how they can represent this Collection object because of the abstract nature of the Collection framework. Each column value should be fully represented in either a general purpose Collection implementation or a specialized Collection implementation, such as a Vector object. An SQL NULL column value must be represented as a null in the Java programming language.

The standard reference implementation uses a Vector object to contain the column values, and it is expected that most implementations will do the same. If a Vector object is used, it size must be exactly equal to the number of rows in this CachedRowSet object.

toCollection() - Method in interface javax.sql.rowset.CachedRowSet
Converts this CachedRowSet object to a Collection object that contains all of the CachedRowSet object's values.
toCollection(int) - Method in interface javax.sql.rowset.CachedRowSet
Converts the designated column in this CachedRowSet object to a Collection object.
toCollection(String) - Method in interface javax.sql.rowset.CachedRowSet
Converts the designated column in this CachedRowSet object to a Collection object.
truncate(long) - Method in class javax.sql.rowset.serial.SerialBlob
Truncates the BLOB value that this Blob object represents to be len bytes in length.
truncate(long) - Method in class javax.sql.rowset.serial.SerialClob
Truncates the CLOB value that this Clob designates to have a length of len characters.

U

UNICODE_STREAM_PARAM - Static variable in class javax.sql.rowset.BaseRowSet
A constant indicating to a RowSetReaderImpl object that a given parameter is a Unicode stream.
UPDATABLE_VIEW_SYNC - Static variable in class javax.sql.rowset.spi.SyncProvider
Indicates that a SyncProvider implementation supports synchronization between a RowSet object and the SQL VIEW used to populate it.
UPDATE_ROW_CONFLICT - Static variable in interface javax.sql.rowset.spi.SyncResolver
Indicates that a conflict occurred while the RowSet object was attempting to update a row in the data source.
undoDelete() - Method in class com.sun.rowset.CachedRowSetImpl
Cancels deletion of the current row and notifies listeners that a row has changed.
undoDelete() - Method in class com.sun.rowset.internal.SyncResolverImpl
Cancels deletion of the current row and notifies listeners that a row has changed.
undoDelete() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Cancels the deletion of the current row and notifies listeners that a row has changed. After this method is called, the current row is no longer marked for deletion. This method can be called at any time during the lifetime of the rowset.

In addition, multiple cancellations of row deletions can be made by adjusting the position of the cursor using any of the cursor position control methods such as:

  • CachedRowSet.absolute
  • CachedRowSet.first
  • CachedRowSet.last
undoDelete() - Method in interface javax.sql.rowset.CachedRowSet
Cancels the deletion of the current row and notifies listeners that a row has changed.
undoInsert() - Method in class com.sun.rowset.CachedRowSetImpl
Immediately removes the current row from this CachedRowSetImpl object if the row has been inserted, and also notifies listeners the a row has changed.
undoInsert() - Method in class com.sun.rowset.internal.SyncResolverImpl
Immediately removes the current row from this CachedRowSetImpl object if the row has been inserted, and also notifies listeners the a row has changed.
undoInsert() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Immediately removes the current row from this CachedRowSet object if the row has been inserted, and also notifies listeners that a row has changed. This method can be called at any time during the lifetime of a rowset and assuming the current row is within the exception limitations (see below), it cancels the row insertion of the current row.

In addition, multiple cancellations of row insertions can be made by adjusting the position of the cursor using any of the cursor position control methods such as:

  • CachedRowSet.absolute
  • CachedRowSet.first
  • CachedRowSet.last
undoInsert() - Method in interface javax.sql.rowset.CachedRowSet
Immediately removes the current row from this CachedRowSet object if the row has been inserted, and also notifies listeners that a row has changed.
undoUpdate() - Method in class com.sun.rowset.CachedRowSetImpl
Immediately reverses the last update operation if the row has been modified.
undoUpdate() - Method in class com.sun.rowset.internal.SyncResolverImpl
Immediately reverses the last update operation if the row has been modified.
undoUpdate() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
Immediately reverses the last update operation if the row has been modified. This method can be called to reverse updates on all columns until all updates in a row have been rolled back to their state just prior to the last synchronization (acceptChanges) or population. This method may also be called while performing updates to the insert row.

undoUpdateundoUpdate() - Method in interface javax.sql.rowset.CachedRowSet

Immediately reverses the last update operation if the row has been modified.
unicodeStream - Variable in class javax.sql.rowset.BaseRowSet
The InputStream object that will be returned by the method getUnicodeStream, which is specified in the ResultSet interface.
unparsedEntityDecl(String, String, String, String) - Method in class com.sun.rowset.internal.XmlReaderContentHandler
 
unregisterProvider(String) - Static method in class javax.sql.rowset.spi.SyncFactory
Removes the designated currently registered synchronization provider from the Factory SPI register.
unsetMatchColumn(int[]) - Method in class com.sun.rowset.CachedRowSetImpl
Unsets the designated parameter to the given int array.
unsetMatchColumn(String[]) - Method in class com.sun.rowset.CachedRowSetImpl
Unsets the designated parameter to the given String array.
unsetMatchColumn(int) - Method in class com.sun.rowset.CachedRowSetImpl
Unsets the designated parameter to the given int object.
unsetMatchColumn(String) - Method in class com.sun.rowset.CachedRowSetImpl
Unsets the designated parameter to the given String object.
unsetMatchColumn(int[]) - Method in class com.sun.rowset.JdbcRowSetImpl
Unsets the designated parameter to the given int array.
unsetMatchColumn(String[]) - Method in class com.sun.rowset.JdbcRowSetImpl
Unsets the designated parameter to the given String array.
unsetMatchColumn(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Unsets the designated parameter to the given int object.
unsetMatchColumn(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Unsets the designated parameter to the given String object.
unsetMatchColumn(int[]) - Method in class com.sun.rowset.internal.SyncResolverImpl
Unsets the designated parameter to the given int array.
unsetMatchColumn(String[]) - Method in class com.sun.rowset.internal.SyncResolverImpl
Unsets the designated parameter to the given String array.
unsetMatchColumn(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Unsets the designated parameter to the given int object.
unsetMatchColumn(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Unsets the designated parameter to the given String object.
unsetMatchColumn(int[]) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
unsetMatchColumn(String[]) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
unsetMatchColumn(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
unsetMatchColumn(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
unsetMatchColumn(int[]) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
Unsets the designated parameter to the given int array.
unsetMatchColumn(String[]) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
Unsets the designated parameter to the given String array.
unsetMatchColumn(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
Unsets the designated parameter to the given int object.
unsetMatchColumn(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
Unsets the designated parameter to the given String object.
unsetMatchColumn(int) - Method in interface javax.sql.rowset.Joinable
Unsets the designated column as the match column for this RowSet object.
unsetMatchColumn(int[]) - Method in interface javax.sql.rowset.Joinable
Unsets the designated columns as the match column for this RowSet object.
unsetMatchColumn(String) - Method in interface javax.sql.rowset.Joinable
Unsets the designated column as the match column for this RowSet object.
unsetMatchColumn(String[]) - Method in interface javax.sql.rowset.Joinable
Unsets the designated columns as the match column for this RowSet object.
updateArray(int, Array) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.sql.Array values.
updateArray(String, Array) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.sql.Array value.
updateArray(int, Array) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the designated column in either the current row or the insert row of this JdbcRowSetImpl object with the given java.sql.Array values.
updateArray(String, Array) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the designated column in either the current row or the insert row of this JdbcRowSetImpl object with the given java.sql.Array value.
updateArray(int, Array) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given Array object.
updateArray(String, Array) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given Array object.
updateArray(int, Array) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.sql.Array values.
updateArray(String, Array) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.sql.Array value.
updateArray(int, Array) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateArray(String, Array) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateArray(int, Array) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateArray(String, Array) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateAsciiStream(int, InputStream, int) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given ASCII stream value.
updateAsciiStream(String, InputStream, int) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given ASCII stream value.
updateAsciiStream(int, InputStream, int) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given ASCII stream value.
updateAsciiStream(String, InputStream, int) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given ASCII stream value.
updateAsciiStream(int, InputStream, int) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with an ascii stream value.
updateAsciiStream(String, InputStream, int) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with an ascii stream value.
updateAsciiStream(int, InputStream, int) - Method in class com.sun.rowset.JoinRowSetImpl
 
updateAsciiStream(String, InputStream, int) - Method in class com.sun.rowset.JoinRowSetImpl
Unsupported; throws an UnsupportedOperationException if called.
updateAsciiStream(int, InputStream, int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given ASCII stream value.
updateAsciiStream(String, InputStream, int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given ASCII stream value.
updateAsciiStream(int, InputStream, int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateAsciiStream(String, InputStream, int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateAsciiStream(int, InputStream, int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateAsciiStream(String, InputStream, int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateBigDecimal(int, BigDecimal) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.math.BigDecimal object.
updateBigDecimal(String, BigDecimal) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.math.BigDecimal object.
updateBigDecimal(int, BigDecimal) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.math.BigDecimal object.
updateBigDecimal(String, BigDecimal) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.math.BigDecimal object.
updateBigDecimal(int, BigDecimal) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a java.math.BigDecimal value.
updateBigDecimal(String, BigDecimal) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a java.sql.BigDecimal value.
updateBigDecimal(int, BigDecimal) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given java.math.BigDecimal object.
updateBigDecimal(String, BigDecimal) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given java.math.BigDecimal object.
updateBigDecimal(int, BigDecimal) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.math.BigDecimal object.
updateBigDecimal(String, BigDecimal) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.math.BigDecimal object.
updateBigDecimal(int, BigDecimal) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateBigDecimal(String, BigDecimal) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateBigDecimal(int, BigDecimal) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateBigDecimal(String, BigDecimal) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateBinaryStream(int, InputStream, int) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.io.InputStream object.
updateBinaryStream(String, InputStream, int) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.io.InputStream object.
updateBinaryStream(int, InputStream, int) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.io.InputStream object.
updateBinaryStream(String, InputStream, int) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.io.InputStream object.
updateBinaryStream(int, InputStream, int) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a binary stream value.
updateBinaryStream(String, InputStream, int) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a binary stream value.
updateBinaryStream(int, InputStream, int) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given java.io.InputStream object.
updateBinaryStream(String, InputStream, int) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given java.io.InputStream object.
updateBinaryStream(int, InputStream, int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.io.InputStream object.
updateBinaryStream(String, InputStream, int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.io.InputStream object.
updateBinaryStream(int, InputStream, int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateBinaryStream(String, InputStream, int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateBinaryStream(int, InputStream, int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateBinaryStream(String, InputStream, int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateBlob(int, Blob) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.sql.Blob value.
updateBlob(String, Blob) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.sql.Blob value.
updateBlob(int, Blob) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the designated column in either the current row or the insert row of this JdbcRowSetImpl object with the given java.sql.Blob value.
updateBlob(String, Blob) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the designated column in either the current row or the insert row of this JdbcRowSetImpl object with the given java.sql.Blob value.
updateBlob(int, Blob) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given Blob value.
updateBlob(String, Blob) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given Blob object.
updateBlob(int, Blob) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.sql.Blob value.
updateBlob(String, Blob) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.sql.Blob value.
updateBlob(int, Blob) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateBlob(String, Blob) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateBlob(int, Blob) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateBlob(String, Blob) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateBoolean(int, boolean) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given boolean value.
updateBoolean(String, boolean) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given boolean value.
updateBoolean(int, boolean) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given boolean value.
updateBoolean(String, boolean) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given boolean value.
updateBoolean(int, boolean) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a boolean value.
updateBoolean(String, boolean) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a boolean value.
updateBoolean(int, boolean) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given boolean value.
updateBoolean(String, boolean) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given boolean value.
updateBoolean(int, boolean) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given boolean value.
updateBoolean(String, boolean) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given boolean value.
updateBoolean(int, boolean) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateBoolean(String, boolean) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateBoolean(int, boolean) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateBoolean(String, boolean) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateByte(int, byte) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given byte value.
updateByte(String, byte) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given byte value.
updateByte(int, byte) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given byte value.
updateByte(String, byte) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given byte value.
updateByte(int, byte) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a byte value.
updateByte(String, byte) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a byte value.
updateByte(int, byte) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given byte value.
updateByte(String, byte) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given byte value.
updateByte(int, byte) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given byte value.
updateByte(String, byte) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given byte value.
updateByte(int, byte) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateByte(String, byte) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateByte(int, byte) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateByte(String, byte) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateBytes(int, byte[]) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given byte array.
updateBytes(String, byte[]) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given byte array.
updateBytes(int, byte[]) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given byte array.
updateBytes(String, byte[]) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given byte array.
updateBytes(int, byte[]) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a byte array value.
updateBytes(String, byte[]) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a boolean value.
updateBytes(int, byte[]) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given byte array.
updateBytes(String, byte[]) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given byte array.
updateBytes(int, byte[]) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given byte array.
updateBytes(String, byte[]) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given byte array.
updateBytes(int, byte[]) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateBytes(String, byte[]) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateBytes(int, byte[]) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateBytes(String, byte[]) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateCahracterStream(int, Reader, int) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.io.Reader object.
updateCharacterStream(int, Reader, int) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.io.Reader object.
updateCharacterStream(String, Reader, int) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.io.Reader object.
updateCharacterStream(String, Reader, int) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.io.Reader object.
updateCharacterStream(int, Reader, int) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a character stream value.
updateCharacterStream(String, Reader, int) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a character stream value.
updateCharacterStream(int, Reader, int) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given java.io.Reader object.
updateCharacterStream(String, Reader, int) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given java.io.Reader object.
updateCharacterStream(int, Reader, int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.io.Reader object.
updateCharacterStream(String, Reader, int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given java.io.Reader object.
updateCharacterStream(int, Reader, int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateCharacterStream(String, Reader, int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateCharacterStream(int, Reader, int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateCharacterStream(String, Reader, int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateClob(int, Clob) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given double value.
updateClob(String, Clob) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given double value.
updateClob(int, Clob) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the designated column in either the current row or the insert row of this JdbcRowSetImpl object with the given double value.
updateClob(String, Clob) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the designated column in either the current row or the insert row of this JdbcRowSetImpl object with the given double value.
updateClob(int, Clob) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given Clob object.
updateClob(String, Clob) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given Clob object.
updateClob(int, Clob) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given double value.
updateClob(String, Clob) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given double value.
updateClob(int, Clob) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateClob(String, Clob) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateClob(int, Clob) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateClob(String, Clob) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateDate(int, Date) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Date object.
updateDate(String, Date) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Date object.
updateDate(int, Date) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Date object.
updateDate(String, Date) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Date object.
updateDate(int, Date) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a java.sql.Date value.
updateDate(String, Date) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a java.sql.Date value.
updateDate(int, Date) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given Date object.
updateDate(String, Date) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given Date object.
updateDate(int, Date) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Date object.
updateDate(String, Date) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Date object.
updateDate(int, Date) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateDate(String, Date) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateDate(int, Date) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateDate(String, Date) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateDouble(int, double) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given double value.
updateDouble(String, double) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given double value.
updateDouble(int, double) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given double value.
updateDouble(String, double) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given double value.
updateDouble(int, double) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a double value.
updateDouble(String, double) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a double value.
updateDouble(int, double) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given double value.
updateDouble(String, double) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given double value.
updateDouble(int, double) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given double value.
updateDouble(String, double) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given double value.
updateDouble(int, double) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateDouble(String, double) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateDouble(int, double) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateDouble(String, double) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateFloat(int, float) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given float value.
updateFloat(String, float) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given float value.
updateFloat(int, float) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given float value.
updateFloat(String, float) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given float value.
updateFloat(int, float) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a float value.
updateFloat(String, float) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a float value.
updateFloat(int, float) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given float value.
updateFloat(String, float) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given float value.
updateFloat(int, float) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given float value.
updateFloat(String, float) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given float value.
updateFloat(int, float) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateFloat(String, float) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateFloat(int, float) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateFloat(String, float) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateInt(int, int) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given int value.
updateInt(String, int) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given int value.
updateInt(int, int) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given int value.
updateInt(String, int) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given int value.
updateInt(int, int) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with an int value.
updateInt(String, int) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with an int value.
updateInt(int, int) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given int value.
updateInt(String, int) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given int value.
updateInt(int, int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given int value.
updateInt(String, int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given int value.
updateInt(int, int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateInt(String, int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateInt(int, int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateInt(String, int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateLong(int, long) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given long value.
updateLong(String, long) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given long value.
updateLong(int, long) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given long value.
updateLong(String, long) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given long value.
updateLong(int, long) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a long value.
updateLong(String, long) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a long value.
updateLong(int, long) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given long value.
updateLong(String, long) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given long value.
updateLong(int, long) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given long value.
updateLong(String, long) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given long value.
updateLong(int, long) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateLong(String, long) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateLong(int, long) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateLong(String, long) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateNull(int) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated nullable column in the current row or the insert row of this CachedRowSetImpl object with null value.
updateNull(String) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated nullable column in the current row or the insert row of this CachedRowSetImpl object with null value.
updateNull(int) - Method in class com.sun.rowset.JdbcRowSetImpl
Gives a nullable column a null value.
updateNull(String) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a null value.
updateNull(int) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated nullable column in the current row or the insert row of this JoinRowSetImpl object with null value.
updateNull(String) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated nullable column in the current row or the insert row of this JoinRowSetImpl object with null value.
updateNull(int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated nullable column in the current row or the insert row of this CachedRowSetImpl object with null value.
updateNull(String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated nullable column in the current row or the insert row of this CachedRowSetImpl object with null value.
updateNull(int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateNull(String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateNull(int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateNull(String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateObject(int, Object, int) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Object value.
updateObject(int, Object) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Object value.
updateObject(String, Object, int) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Object value.
updateObject(String, Object) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Object value.
updateObject(int, Object) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Object value.
updateObject(String, Object) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Object value.
updateObject(int, Object, int) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Object value.
updateObject(String, Object, int) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Object value.
updateObject(int, Object, int) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with an Object value.
updateObject(int, Object) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with an Object value.
updateObject(String, Object, int) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with an Object value.
updateObject(String, Object) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with an Object value.
updateObject(int, Object, int) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given Object value.
updateObject(int, Object) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given Object value.
updateObject(String, Object, int) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given Object value.
updateObject(String, Object) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given Object value.
updateObject(int, Object, int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Object value.
updateObject(int, Object) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Object value.
updateObject(String, Object, int) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Object value.
updateObject(String, Object) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Object value.
updateObject(int, Object, int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateObject(int, Object) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateObject(String, Object, int) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateObject(String, Object) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateObject(int, Object, int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateObject(int, Object) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateObject(String, Object, int) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateObject(String, Object) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateRef(int, Ref) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Ref value.
updateRef(String, Ref) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given double value.
updateRef(int, Ref) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the designated column in either the current row or the insert row of this JdbcRowSetImpl object with the given double value.
updateRef(String, Ref) - Method in class com.sun.rowset.JdbcRowSetImpl
Sets the designated column in either the current row or the insert row of this JdbcRowSetImpl object with the given double value.
updateRef(int, Ref) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given Ref value.
updateRef(String, Ref) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given Ref value.
updateRef(int, Ref) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given double value.
updateRef(String, Ref) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given double value.
updateRef(int, Ref) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateRef(String, Ref) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateRef(int, Ref) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateRef(String, Ref) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateRow() - Method in class com.sun.rowset.CachedRowSetImpl
Marks the current row of this CachedRowSetImpl object as updated and notifies listeners registered with this rowset that the row has changed.
updateRow() - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the underlying database with the new contents of the current row of this rowset's ResultSet object and notifies listeners that a row has changed.
updateRow() - Method in class com.sun.rowset.JoinRowSetImpl
Marks the current row of this JoinRowSetImpl object as updated and notifies listeners registered with this rowset that the row has changed.
updateRow() - Method in class com.sun.rowset.internal.SyncResolverImpl
Marks the current row of this CachedRowSetImpl object as updated and notifies listeners registered with this rowset that the row has changed.
updateRow() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateRow() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateShort(int, short) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given short value.
updateShort(String, short) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given short value.
updateShort(int, short) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given short value.
updateShort(String, short) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given short value.
updateShort(int, short) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a short value.
updateShort(String, short) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a short value.
updateShort(int, short) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given short value.
updateShort(String, short) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given short value.
updateShort(int, short) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given short value.
updateShort(String, short) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given short value.
updateShort(int, short) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateShort(String, short) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateShort(int, short) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateShort(String, short) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateString(int, String) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given String object.
updateString(String, String) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given String object.
updateString(int, String) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given String object.
updateString(String, String) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given String object.
updateString(int, String) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a String value.
updateString(String, String) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a String value.
updateString(int, String) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given String object.
updateString(String, String) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given String object.
updateString(int, String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given String object.
updateString(String, String) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given String object.
updateString(int, String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateString(String, String) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateString(int, String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateString(String, String) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateTime(int, Time) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Time object.
updateTime(String, Time) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Time object.
updateTime(int, Time) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Time object.
updateTime(String, Time) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Time object.
updateTime(int, Time) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a java.sql.Time value.
updateTime(String, Time) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a java.sql.Time value.
updateTime(int, Time) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given Time object.
updateTime(String, Time) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given Time object.
updateTime(int, Time) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Time object.
updateTime(String, Time) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Time object.
updateTime(int, Time) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateTime(String, Time) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateTime(int, Time) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateTime(String, Time) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateTimestamp(int, Timestamp) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Timestamp object.
updateTimestamp(String, Timestamp) - Method in class com.sun.rowset.CachedRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Timestamp object.
updateTimestamp(int, Timestamp) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Timestamp object.
updateTimestamp(String, Timestamp) - Method in class com.sun.rowset.FilteredRowSetImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Timestamp object.
updateTimestamp(int, Timestamp) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a java.sql.Timestamp value.
updateTimestamp(String, Timestamp) - Method in class com.sun.rowset.JdbcRowSetImpl
Updates the designated column with a java.sql.Timestamp value.
updateTimestamp(int, Timestamp) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given Timestamp object.
updateTimestamp(String, Timestamp) - Method in class com.sun.rowset.JoinRowSetImpl
Sets the designated column in either the current row or the insert row of this JoinRowSetImpl object with the given Timestamp object.
updateTimestamp(int, Timestamp) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Timestamp object.
updateTimestamp(String, Timestamp) - Method in class com.sun.rowset.internal.SyncResolverImpl
Sets the designated column in either the current row or the insert row of this CachedRowSetImpl object with the given Timestamp object.
updateTimestamp(int, Timestamp) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
updateTimestamp(String, Timestamp) - Method in class com.sun.sql.rowset.CachedRowSetXImpl
 
updateTimestamp(int, Timestamp) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
updateTimestamp(String, Timestamp) - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 

W

WebRowSet - interface javax.sql.rowset.WebRowSet.
The standard interface that all implementations of a WebRowSet must implement.
WebRowSetImpl - class com.sun.rowset.WebRowSetImpl.
The standard implementation of the WebRowSet interface.
WebRowSetImpl() - Constructor for class com.sun.rowset.WebRowSetImpl
Constructs a new WebRowSet object initialized with the default values for a CachedRowSet object instance.
WebRowSetImpl(Hashtable) - Constructor for class com.sun.rowset.WebRowSetImpl
Constructs a new WebRowSet object initialized with the the synchronization SPI provider properties as specified in the Hashtable.
WebRowSetXmlReader - class com.sun.rowset.internal.WebRowSetXmlReader.
An implementation of the XmlReader interface, which reads and parses an XML formatted WebRowSet object.
WebRowSetXmlReader() - Constructor for class com.sun.rowset.internal.WebRowSetXmlReader
 
WebRowSetXmlWriter - class com.sun.rowset.internal.WebRowSetXmlWriter.
An implementation of the XmlWriter interface, which writes a WebRowSet object to an output stream as an XML document.
WebRowSetXmlWriter() - Constructor for class com.sun.rowset.internal.WebRowSetXmlWriter
 
warning(SAXParseException) - Method in class com.sun.rowset.internal.XmlErrorHandler
 
warning(SAXParseException) - Method in class com.sun.rowset.internal.XmlReaderContentHandler
Prints a warning message to System.out giving the line number and uri for what caused the warning plus a message explaining the reason for the warning.
wasNull() - Method in class com.sun.rowset.CachedRowSetImpl
Reports whether the last column read was SQL NULL.
wasNull() - Method in class com.sun.rowset.JdbcRowSetImpl
Reports whether the last column read from this rowset's ResultSet object had a value of SQL NULL.
wasNull() - Method in class com.sun.rowset.JoinRowSetImpl
Reports whether the last column read was SQL NULL.
wasNull() - Method in class com.sun.rowset.internal.SyncResolverImpl
Reports whether the last column read was SQL NULL.
wasNull() - Method in class com.sun.sql.rowset.CachedRowSetXImpl
wasNull() - Method in class com.sun.sql.rowset.JdbcRowSetXImpl
 
wasNull() - Method in class javax.sql.rowset.serial.SQLInputImpl
Ascertains whether the last value read from this SQLInputImpl object was null.
writeArray(Array) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes an Array object in the Java programming language to this SQLOutputImpl object.
writeAsciiStream(InputStream) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a stream of ASCII characters to this SQLOutputImpl object.
writeBigDecimal(BigDecimal) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a java.math.BigDecimal object in the Java programming language to this SQLOutputImpl object.
writeBinaryStream(InputStream) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a stream of uninterpreted bytes to this SQLOutputImpl object.
writeBlob(Blob) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a Blob object in the Java programming language to this SQLOutputImpl object.
writeBoolean(boolean) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a boolean in the Java programming language to this SQLOutputImpl object.
writeByte(byte) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a byte in the Java programming language to this SQLOutputImpl object.
writeBytes(byte[]) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes an array of bytes in the Java programming language to this SQLOutputImpl object.
writeCharacterStream(Reader) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a stream of Unicode characters to this SQLOutputImpl object.
writeClob(Clob) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a Clob object in the Java programming language to this SQLOutputImpl object.
writeData(RowSetInternal) - Method in class com.sun.rowset.internal.CachedRowSetWriter
Propagates changes in the given RowSet object back to its underlying data source and returns true if successful.
writeData(RowSetInternal) - Method in class com.sun.rowset.internal.WebRowSetXmlWriter
Purely for code coverage purposes..
writeDate(Date) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a java.sql.Date object in the Java programming language to this SQLOutputImpl object.
writeDouble(double) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a double in the Java programming language to this SQLOutputImpl object.
writeFloat(float) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a float in the Java programming language to this SQLOutputImpl object.
writeInt(int) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes an int in the Java programming language to this SQLOutputImpl object.
writeLong(long) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a long in the Java programming language to this SQLOutputImpl object.
writeObject(SQLData) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes to the stream the data contained in the given SQLData object.
writeRef(Ref) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a Ref object in the Java programming language to this SQLOutputImpl object.
writeShort(short) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a short in the Java programming language to this SQLOutputImpl object.
writeString(String) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a String in the Java programming language to this SQLOutputImpl object.
writeStruct(Struct) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a Struct object in the Java programming language to this SQLOutputImpl object.
writeTime(Time) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a java.sql.Time object in the Java programming language to this SQLOutputImpl object.
writeTimestamp(Timestamp) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a java.sql.Timestamp object in the Java programming language to this SQLOutputImpl object.
writeURL(URL) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes an java.sql.Type.DATALINK object in the Java programming language to this SQLOutputImpl object.
writeXML(WebRowSet, Writer) - Method in class com.sun.rowset.internal.WebRowSetXmlWriter
Writes the given WebRowSet object as an XML document using the given java.io.Writer object.
writeXML(WebRowSet, OutputStream) - Method in class com.sun.rowset.internal.WebRowSetXmlWriter
Writes the given WebRowSet object as an XML document using the given java.io.OutputStream object.
writeXML(WebRowSet, Writer) - Method in interface javax.sql.rowset.spi.XmlWriter
Writes the given WebRowSet object to the specified java.io.Writer output stream as an XML document.
writeXml(ResultSet, Writer) - Method in class com.sun.rowset.JoinRowSetImpl
Creates a new WebRowSet object, populates it with the data in the given ResultSet object, and writes it to the given java.io.Writer object in XML format.
writeXml(Writer) - Method in class com.sun.rowset.JoinRowSetImpl
Writes this JoinRowSet object to the given java.io.Writer object in XML format.
writeXml(OutputStream) - Method in class com.sun.rowset.JoinRowSetImpl
Creates an an output stream of the internal state and contents of a WebRowSet for XML proceessing
writeXml(ResultSet, OutputStream) - Method in class com.sun.rowset.JoinRowSetImpl
Creates a new WebRowSet object, populates it with the contents of the ResultSet and creates an output streams the internal state and contents of the rowset for XML processing.
writeXml(ResultSet, Writer) - Method in class com.sun.rowset.WebRowSetImpl
Populates this WebRowSet object with the data in the given ResultSet object and writes itself to the given java.io.Writer object in XML format.
writeXml(Writer) - Method in class com.sun.rowset.WebRowSetImpl
Writes this WebRowSet object to the given java.io.Writer object in XML format.
writeXml(OutputStream) - Method in class com.sun.rowset.WebRowSetImpl
Writes this WebRowSet object to the given OutputStream object in XML format.
writeXml(ResultSet, OutputStream) - Method in class com.sun.rowset.WebRowSetImpl
Populates this WebRowSet object with the data in the given ResultSet object and writes itself to the given java.io.OutputStream object in XML format.
writeXml(ResultSet, Writer) - Method in interface javax.sql.rowset.WebRowSet
Populates this WebRowSet object with the contents of the given ResultSet object and writes its data, properties, and metadata to the given Writer object in XML format.
writeXml(ResultSet, OutputStream) - Method in interface javax.sql.rowset.WebRowSet
Populates this WebRowSet object with the contents of the given ResultSet object and writes its data, properties, and metadata to the given OutputStream object in XML format.
writeXml(Writer) - Method in interface javax.sql.rowset.WebRowSet
Writes the data, properties, and metadata for this WebRowSet object to the given Writer object in XML format.
writeXml(OutputStream) - Method in interface javax.sql.rowset.WebRowSet
Writes the data, properties, and metadata for this WebRowSet object to the given OutputStream object in XML format.

X

XmlErrorHandler - class com.sun.rowset.internal.XmlErrorHandler.
An implementation of the DefaultHandler interface, which handles all the errors, fatalerrors and warnings while reading the xml file.
XmlErrorHandler() - Constructor for class com.sun.rowset.internal.XmlErrorHandler
 
XmlReader - interface javax.sql.rowset.spi.XmlReader.
A specialized interface that facilitates an extension of the SyncProvider abstract class for XML orientated synchronization providers.
XmlReaderContentHandler - class com.sun.rowset.internal.XmlReaderContentHandler.
The document handler that receives parse events that an XML parser sends while it is parsing an XML document representing a WebRowSet object.
XmlReaderContentHandler(RowSet) - Constructor for class com.sun.rowset.internal.XmlReaderContentHandler
Constructs a new XmlReaderContentHandler object that will assist the SAX parser in reading a WebRowSet object in the format of an XML document.
XmlResolver - class com.sun.rowset.internal.XmlResolver.
An implementation of the EntityResolver interface, which reads and parses an XML formatted WebRowSet object.
XmlResolver() - Constructor for class com.sun.rowset.internal.XmlResolver
 
XmlWriter - interface javax.sql.rowset.spi.XmlWriter.
A specialized interface that facilitates an extension of the SyncProvider abstract class for XML orientated synchronization providers.

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