JSR 114 Maintenance Release 1.2
A B C D E F G H I J L N P R S T U W X 

A

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.
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.
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.
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

BaseRowSet - Class in javax.sql.rowset
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.
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.
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

CachedRowSet - Interface in javax.sql.rowset
The interface that all standard implementations of CachedRowSet must implement.
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.
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.
clone() - Method in class javax.sql.rowset.serial.SerialArray
Returns a clone of this SerialArray.
clone() - Method in class javax.sql.rowset.serial.SerialBlob
Returns a clone of this SerialBlob.
clone() - Method in class javax.sql.rowset.serial.SerialClob
Returns a clone of this SerialClob.
clone() - Method in class javax.sql.rowset.serial.SerialDatalink
Returns a clone of this SerialDatalink.
clone() - Method in class javax.sql.rowset.serial.SerialJavaObject
Returns a clone of this SerialJavaObject.
clone() - Method in class javax.sql.rowset.serial.SerialRef
Returns a clone of this SerialRef.
clone() - Method in class javax.sql.rowset.serial.SerialStruct
Returns a clone of this SerialStruct.
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.
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.
COMMIT_ON_ACCEPT_CHANGES - Static variable in interface javax.sql.rowset.CachedRowSet
Deprecated.
Because this field is final (it is part of an interface), its value cannot be changed.
createCachedRowSet() - Method in interface javax.sql.rowset.RowSetFactory
Creates a new instance of a CachedRowSet.
createCopy() - Method in interface javax.sql.rowset.CachedRowSet
Creates a RowSet object that is a deep copy of the data in this CachedRowSet object.
createCopyNoConstraints() - Method in interface javax.sql.rowset.CachedRowSet
Creates a CachedRowSet object that is a deep copy of this CachedRowSet object's data but is independent of it.
createCopySchema() - Method in interface javax.sql.rowset.CachedRowSet
Creates a CachedRowSet object that is an empty copy of this CachedRowSet object.
createFilteredRowSet() - Method in interface javax.sql.rowset.RowSetFactory
Creates a new instance of a FilteredRowSet.
createJdbcRowSet() - Method in interface javax.sql.rowset.RowSetFactory
Creates a new instance of a JdbcRowSet.
createJoinRowSet() - Method in interface javax.sql.rowset.RowSetFactory
Creates a new instance of a JoinRowSet.
createShared() - Method in interface javax.sql.rowset.CachedRowSet
Returns a new RowSet object backed by the same data as that of this CachedRowSet object.
createWebRowSet() - Method in interface javax.sql.rowset.RowSetFactory
Creates a new instance of a WebRowSet.
CROSS_JOIN - Static variable in interface javax.sql.rowset.JoinRowSet
An ANSI-style JOIN providing a cross product of two tables

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.

E

equals(Object) - Method in class javax.sql.rowset.serial.SerialArray
Compares this SerialArray to the specified object.
equals(Object) - Method in class javax.sql.rowset.serial.SerialBlob
Compares this SerialBlob to the specified object.
equals(Object) - Method in class javax.sql.rowset.serial.SerialClob
Compares this SerialClob to the specified object.
equals(Object) - Method in class javax.sql.rowset.serial.SerialDatalink
Compares this SerialDatalink to the specified object.
equals(Object) - Method in class javax.sql.rowset.serial.SerialJavaObject
Compares this SerialJavaObject to the specified object.
equals(Object) - Method in class javax.sql.rowset.serial.SerialRef
Compares this SerialRef to the specified object.
equals(Object) - Method in class javax.sql.rowset.serial.SerialStruct
Compares this SerialStruct to the specified object.
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 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

FilteredRowSet - Interface in javax.sql.rowset
The standard interface that all standard implementations of FilteredRowSet must implement.
free() - Method in class javax.sql.rowset.serial.SerialArray
This method frees the SeriableArray object and releases the resources that it holds.
free() - Method in class javax.sql.rowset.serial.SerialBlob
This method frees the SeriableBlob object and releases the resources that it holds.
free() - Method in class javax.sql.rowset.serial.SerialClob
This method frees the SeriableClob object and releases the resources that it holds.
FULL_JOIN - Static variable in interface javax.sql.rowset.JoinRowSet
An ANSI-style JOIN providing a a full JOIN.

G

getArray() - Method in class javax.sql.rowset.serial.SerialArray
Returns a new array that is a copy of this SerialArray object.
getArray(Map<String, Class<?>>) - 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<String, Class<?>>) - 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() - Method in class javax.sql.rowset.serial.SerialClob
Retrieves the 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<String, Class<?>>) - 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 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.
getBinaryStream() - Method in class javax.sql.rowset.serial.SerialBlob
Returns this SerialBlob object as an input stream.
getBinaryStream(long, long) - Method in class javax.sql.rowset.serial.SerialBlob
Returns an InputStream object that contains a partial Blob value, starting with the byte specified by pos, which is length bytes in length.
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(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() - Method in class javax.sql.rowset.serial.SerialClob
Returns this SerialClob object's data as a stream of Unicode characters.
getCharacterStream(long, long) - Method in class javax.sql.rowset.serial.SerialClob
Returns a Reader object that contains a partial SerialClob value, starting with the character specified by pos, which is length characters in length.
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.
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 javax.sql.rowset.BaseRowSet
Returns the concurrency for this RowSet object.
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.
getDatalink() - Method in class javax.sql.rowset.serial.SerialDatalink
Returns a new URL that is a copy of this SerialDatalink object.
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.
getEscapeProcessing() - Method in class javax.sql.rowset.BaseRowSet
Ascertains whether escape processing is enabled for this RowSet object.
getFetchDirection() - Method in class javax.sql.rowset.BaseRowSet
Retrieves this RowSet object's current setting for the fetch direction.
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 interface javax.sql.rowset.FilteredRowSet
Retrieves the active filter for this FilteredRowSet object.
getInstance(String) - Static method in class javax.sql.rowset.spi.SyncFactory
Returns the SyncProvider instance identified by providerID.
getJoinType() - Method in interface javax.sql.rowset.JoinRowSet
Returns a int describing the set SQL JOIN type governing this JoinRowSet instance.
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.
getMatchColumnIndexes() - Method in interface javax.sql.rowset.Joinable
Retrieves the indexes of the match columns that were set for this RowSet object with the method setMatchColumn(int[] columnIdxes).
getMatchColumnNames() - Method in interface javax.sql.rowset.Joinable
Retrieves the names of the match columns that were set for this RowSet object with the method setMatchColumn(String [] columnNames).
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 javax.sql.rowset.BaseRowSet
Retrieves the maximum number of rows that this RowSet object may contain.
getNextWarning() - Method in exception javax.sql.rowset.RowSetWarning
Retrieves the warning chained to this RowSetWarning object.
getObject() - Method in class javax.sql.rowset.serial.SerialJavaObject
Returns an Object that is a copy of this SerialJavaObject object.
getObject(Map<String, Class<?>>) - Method in class javax.sql.rowset.serial.SerialRef
Returns an Object representing the SQL structured type to which this SerialRef object refers.
getObject() - Method in class javax.sql.rowset.serial.SerialRef
Returns an Object representing the SQL structured type to which this SerialRef object refers.
getOriginal() - Method in interface javax.sql.rowset.CachedRowSet
Returns a ResultSet object containing the original value of this CachedRowSet object.
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 interface javax.sql.rowset.CachedRowSet
Returns the page-size for the CachedRowSet object
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.
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 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.
getRegisteredProviders() - Static method in class javax.sql.rowset.spi.SyncFactory
Returns an Enumeration of currently registered synchronization providers.
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<String, Class<?>>) - 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<String, Class<?>>) - 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.
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 javax.sql.rowset.spi.SyncProvider
Returns a javax.sql.RowSetReader object, which can be used to populate a RowSet object with data.
getRowSets() - Method in interface javax.sql.rowset.JoinRowSet
Returns a Collection object containing the RowSet objects that have been added to this JoinRowSet object.
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 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.
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(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.
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.
getSQLTypeName() - Method in class javax.sql.rowset.serial.SerialStruct
Retrieves the SQL type name for this SerialStruct object.
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.
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 interface javax.sql.rowset.CachedRowSet
Retrieves the SyncProvider implementation for this CachedRowSet object.
getSyncResolver() - Method in exception 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 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.
getTransactionIsolation() - Method in class javax.sql.rowset.BaseRowSet
Returns the transaction isolation property for this RowSet object's connection.
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() - 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 javax.sql.rowset.spi.SyncProvider
Returns the vendor name of this SyncProvider instance
getVersion() - Method in class javax.sql.rowset.spi.SyncProvider
Returns the release version of this SyncProvider instance.
getWhereClause() - Method in interface javax.sql.rowset.JoinRowSet
Return a SQL-like description of the WHERE clause being used in a JoinRowSet object.
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.

H

hashCode() - Method in class javax.sql.rowset.serial.SerialArray
Returns a hash code for this SerialArray.
hashCode() - Method in class javax.sql.rowset.serial.SerialBlob
Returns a hash code for this SerialBlob.
hashCode() - Method in class javax.sql.rowset.serial.SerialClob
Returns a hash code for this SerialClob.
hashCode() - Method in class javax.sql.rowset.serial.SerialDatalink
Returns a hash code for this SerialDatalink.
hashCode() - Method in class javax.sql.rowset.serial.SerialJavaObject
Returns a hash code for this SerialJavaObject.
hashCode() - Method in class javax.sql.rowset.serial.SerialRef
Returns a hash code for this SerialRef.
hashCode() - Method in class javax.sql.rowset.serial.SerialStruct
Returns a hash code for this SerialStruct.

I

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.
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.
isAutoIncrement(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Retrieves whether a value stored in the designated column is automatically numbered, and thus readonly.
isCaseSensitive(int) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Indicates whether the case of the designated column's name matters.
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 javax.sql.rowset.RowSetMetaDataImpl
Indicates whether a write operation on the designated column will definitely succeed.
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() - 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.
isWrapperFor(Class<?>) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Returns true if this either implements the interface argument or is directly or indirectly a wrapper for an object that does.
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

javax.sql.rowset - package javax.sql.rowset
Standard interfaces and base classes for JDBC RowSet implementations.
javax.sql.rowset.serial - package javax.sql.rowset.serial
Provides utility classes to allow serializable mappings between SQL types and data types in the Java programming language.
javax.sql.rowset.spi - package javax.sql.rowset.spi
The standard classes and interfaces that a third party vendor has to use in its implementation of a synchronization provider.
JdbcRowSet - Interface in javax.sql.rowset
The standard interface that all standard implementations of JdbcRowSet must implement.
Joinable - Interface in javax.sql.rowset
1.0 Background
JoinRowSet - Interface in javax.sql.rowset
The JoinRowSet interface provides a mechanism for combining related data from different RowSet objects into one JoinRowSet object, which represents an SQL JOIN.

L

LEFT_OUTER_JOIN - Static variable in interface javax.sql.rowset.JoinRowSet
An ANSI-style JOIN providing a left outer join between two tables.
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.

N

newFactory() - Static method in class javax.sql.rowset.RowSetProvider
Creates a new instance of a RowSetFactory implementation.
newFactory(String, ClassLoader) - Static method in class javax.sql.rowset.RowSetProvider
Creates a new instance of a RowSetFactory from the specified factory class name.
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 interface javax.sql.rowset.CachedRowSet
Increments the current page of the CachedRowSet.
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.
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.
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.

P

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.
Predicate - Interface in javax.sql.rowset
The standard interface that provides the framework for all FilteredRowSet objects to describe their filters.
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 interface javax.sql.rowset.CachedRowSet
Decrements the current page of the CachedRowSet.
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.

R

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.
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.
readNClob() - Method in class javax.sql.rowset.serial.SQLInputImpl
Reads an SQL NCLOB value from the stream and returns it as a Clob object in the Java programming language.
readNString() - Method in class javax.sql.rowset.serial.SQLInputImpl
Reads the next attribute in the stream and returns it as a String 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.
readRowId() - Method in class javax.sql.rowset.serial.SQLInputImpl
Reads an SQL ROWID value from the stream and returns it as a RowId 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.
readSQLXML() - Method in class javax.sql.rowset.serial.SQLInputImpl
Reads an SQL XML value from the stream and returns it as a SQLXML object 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 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 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.
registerProvider(String) - Static method in class javax.sql.rowset.spi.SyncFactory
Adds the the given synchronization provider to the factory register.
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.
removeRowSetListener(RowSetListener) - Method in class javax.sql.rowset.BaseRowSet
Removes the designated object from this RowSet object's list of 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.
RIGHT_OUTER_JOIN - Static variable in interface javax.sql.rowset.JoinRowSet
An ANSI-style JOIN providing a right outer join between two tables.
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.
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.
RowSetFactory - Interface in javax.sql.rowset
An interface that defines the implementation of a factory that is used to obtain different types of RowSet implementations.
RowSetMetaDataImpl - Class in javax.sql.rowset
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
 
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.
RowSetProvider - Class in javax.sql.rowset
A factory API that enables applications to obtain a RowSetFactory implementation that can be used to create different types of RowSet implementations.
RowSetProvider() - Constructor for class javax.sql.rowset.RowSetProvider
RowSetProvider constructor
RowSetWarning - Exception in javax.sql.rowset
An extension of SQLException that provides information about database warnings set on RowSet objects.
RowSetWarning(String) - Constructor for exception 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 exception javax.sql.rowset.RowSetWarning
Constructs a default RowSetWarning object.
RowSetWarning(String, String) - Constructor for exception javax.sql.rowset.RowSetWarning
Constructs a RowSetWarning object initialized with the given values for the reason and SQLState.
RowSetWarning(String, String, int) - Constructor for exception javax.sql.rowset.RowSetWarning
Constructs a fully specified RowSetWarning object initialized with the given values for the reason, SQLState and vendorCode.

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.
SerialArray - Class in javax.sql.rowset.serial
A serialized version of an Array object, which is the mapping in the Java programming language of an SQL ARRAY value.
SerialArray(Array, Map<String, Class<?>>) - 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 in javax.sql.rowset.serial
A serialized 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 a serialized version of the given byte array.
SerialBlob(Blob) - Constructor for class javax.sql.rowset.serial.SerialBlob
Constructs a SerialBlob object that is a serialized version of the given Blob object.
SerialClob - Class in javax.sql.rowset.serial
A serialized mapping in the Java programming language of an SQL CLOB value.
SerialClob(char[]) - Constructor for class javax.sql.rowset.serial.SerialClob
Constructs a SerialClob object that is a serialized version of the given char array.
SerialClob(Clob) - Constructor for class javax.sql.rowset.serial.SerialClob
Constructs a SerialClob object that is a serialized version of the given Clob object.
SerialDatalink - Class in javax.sql.rowset.serial
A serialized 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 in javax.sql.rowset.serial
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 exception javax.sql.rowset.serial.SerialException
Creates a new SerialException without a message.
SerialException(String) - Constructor for exception javax.sql.rowset.serial.SerialException
Creates a new SerialException with the specified message.
SerialJavaObject - Class in javax.sql.rowset.serial
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 in javax.sql.rowset.serial
A serialized mapping of a Ref object, which is the mapping in the Java programming language of an SQL REF value.
SerialRef(Ref) - Constructor for class javax.sql.rowset.serial.SerialRef
Constructs a SerialRef object from the given Ref object.
SerialStruct - Class in javax.sql.rowset.serial
A serialized mapping in the Java programming language of an SQL structured type.
SerialStruct(Struct, Map<String, Class<?>>) - 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<String, Class<?>>) - 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.
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(int, InputStream) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter in this RowSet object's command to the given input stream.
setAsciiStream(String, InputStream, int) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setAsciiStream(String, InputStream) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given input stream.
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 SerialClob object represents, starting at position pos.
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.
setBigDecimal(String, BigDecimal) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.math.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(int, InputStream) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter in this RowSet object's command to the given input stream.
setBinaryStream(String, InputStream, int) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setBinaryStream(String, InputStream) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given input stream.
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.
setBlob(int, InputStream, long) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to a InputStream object.
setBlob(int, InputStream) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to a InputStream object.
setBlob(String, InputStream, long) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to a InputStream object.
setBlob(String, Blob) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.sql.Blob object.
setBlob(String, InputStream) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to a InputStream object.
setBoolean(int, boolean) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given boolean in the Java programming language.
setBoolean(String, boolean) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given Java boolean value.
setByte(int, byte) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given byte in the Java programming language.
setByte(String, byte) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given Java byte value.
setBytes(int, byte[]) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given array of bytes.
setBytes(String, byte[]) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given Java 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(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(int, Reader) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter in this RowSet object's command to the given Reader object.
setCharacterStream(String, Reader, int) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given Reader object, which is the given number of characters long.
setCharacterStream(String, Reader) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given Reader object.
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 SerialClob 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.
setClob(int, Reader, long) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to a Reader object.
setClob(int, Reader) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to a Reader object.
setClob(String, Reader, long) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to a Reader object.
setClob(String, Clob) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.sql.Clob object.
setClob(String, Reader) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to a Reader object.
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.
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 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 javax.sql.rowset.BaseRowSet
Sets the concurrency for this RowSet object to the specified concurrency.
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 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 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.
setDate(String, Date) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.sql.Date value using the default time zone of the virtual machine that is running the application.
setDate(String, Date, Calendar) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.sql.Date value, using the given Calendar object.
setDouble(int, double) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given double in the Java programming language.
setDouble(String, double) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given Java double value.
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 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 javax.sql.rowset.BaseRowSet
Sets the fetch size for this RowSet object to the given number of rows.
setFilter(Predicate) - Method in interface javax.sql.rowset.FilteredRowSet
Applies the given Predicate object to this 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.
setFloat(String, float) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given Java float value.
setInt(int, int) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to an int in the Java programming language.
setInt(String, int) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given Java int value.
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 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 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 CachedRowSet object.
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.
setLong(String, long) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given Java long value.
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 javax.sql.rowset.BaseRowSet
Sets the maximum number of rows that this RowSet object may contain to the given number.
setMetaData(RowSetMetaData) - Method in interface javax.sql.rowset.CachedRowSet
Sets the metadata for this CachedRowSet object with the given RowSetMetaData object.
setNCharacterStream(int, Reader) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter in this RowSet object's command to a Reader object.
setNCharacterStream(int, Reader, long) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to a Reader object.
setNCharacterStream(String, Reader, long) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to a Reader object.
setNCharacterStream(String, Reader) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to a Reader object.
setNClob(String, NClob) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to a java.sql.NClob object.
setNClob(String, Reader, long) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to a Reader object.
setNClob(String, Reader) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to a Reader object.
setNClob(int, Reader, long) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to a Reader object.
setNClob(int, NClob) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to a java.sql.NClob object.
setNClob(int, Reader) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to a Reader object.
setNextWarning(RowSetWarning) - Method in exception javax.sql.rowset.RowSetWarning
Sets warning as the next warning, that is, the warning chained to this RowSetWarning object.
setNString(int, String) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated paramter to the given String object.
setNString(String, String) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated paramter to the given String 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.
setNull(String, int) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to SQL NULL.
setNull(String, 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(String, Object, int, int) - Method in class javax.sql.rowset.BaseRowSet
Sets the value of the designated parameter with the given object.
setObject(String, Object, int) - Method in class javax.sql.rowset.BaseRowSet
Sets the value of the designated parameter with the given object.
setObject(String, Object) - Method in class javax.sql.rowset.BaseRowSet
Sets the value of the designated parameter with the given object.
setObject(Object) - Method in class javax.sql.rowset.serial.SerialRef
Sets the SQL structured type that this SerialRef object references to the given Object object.
setOriginalRow() - Method in interface javax.sql.rowset.CachedRowSet
Sets the current row in this CachedRowSet object as the original row.
setPageSize(int) - Method in interface javax.sql.rowset.CachedRowSet
Sets the CachedRowSet object's page-size.
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.
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 javax.sql.rowset.BaseRowSet
Sets this RowSet object's readOnly property to the given boolean.
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 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.
setRowId(int, RowId) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.sql.RowId object.
setRowId(String, RowId) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.sql.RowId object.
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(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.
setShort(String, short) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given Java short value.
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.
setSQLXML(int, SQLXML) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.sql.SQLXML object.
setSQLXML(String, SQLXML) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.sql.SQLXML object.
setString(int, String) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given String value.
setString(String, String) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given Java String value.
setString(long, String) - Method in class javax.sql.rowset.serial.SerialClob
Writes the given Java String to the CLOB value that this SerialClob object represents, 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 interface javax.sql.rowset.CachedRowSet
Sets the SyncProvider objec for this CachedRowSet object to the one specified.
setSyncResolver(SyncResolver) - Method in exception javax.sql.rowset.spi.SyncProviderException
Sets the SyncResolver object for this SyncProviderException object to the one supplied.
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.
setTime(String, Time) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.sql.Time value.
setTime(String, Time, Calendar) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.sql.Time value, using the given Calendar 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.
setTimestamp(String, Timestamp) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.sql.Timestamp value.
setTimestamp(String, Timestamp, Calendar) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.sql.Timestamp value, using the given Calendar object.
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 javax.sql.rowset.BaseRowSet
Sets the type for this RowSet object to the specified type.
setTypeMap(Map<String, Class<?>>) - 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.
setUnicodeStream(int, InputStream, int) - Method in class javax.sql.rowset.BaseRowSet
Deprecated.
getCharacterStream should be used in its place
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.
setURL(int, URL) - Method in class javax.sql.rowset.BaseRowSet
Sets the designated parameter to the given java.net.URL value.
setUsername(String) - Method in class javax.sql.rowset.BaseRowSet
Sets the username property for this RowSet object to the given user name.
size() - Method in interface javax.sql.rowset.CachedRowSet
Returns the number of rows in this CachedRowSet object.
SQLInputImpl - Class in javax.sql.rowset.serial
An input stream used for custom mapping user-defined types (UDTs).
SQLInputImpl(Object[], Map<String, Class<?>>) - 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 in javax.sql.rowset.serial
The output stream for writing the attributes of a custom-mapped user-defined type (UDT) back to the database.
SQLOutputImpl(Vector<?>, Map<String, ?>) - Constructor for class javax.sql.rowset.serial.SQLOutputImpl
Creates a new SQLOutputImpl object initialized with the given vector of attributes and type map.
supportsCrossJoin() - Method in interface javax.sql.rowset.JoinRowSet
Indicates if CROSS_JOIN is supported by a JoinRowSet implementation
supportsFullJoin() - Method in interface javax.sql.rowset.JoinRowSet
Indicates if FULL_JOIN is supported by a JoinRowSet implementation
supportsInnerJoin() - Method in interface javax.sql.rowset.JoinRowSet
Indicates if INNER_JOIN is supported by a JoinRowSet implementation
supportsLeftOuterJoin() - Method in interface javax.sql.rowset.JoinRowSet
Indicates if LEFT_OUTER_JOIN is supported by a JoinRowSet implementation
supportsRightOuterJoin() - Method in interface javax.sql.rowset.JoinRowSet
Indicates if RIGHT_OUTER_JOIN is supported by a JoinRowSet implementation
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.
SyncFactory - Class in javax.sql.rowset.spi
The Service Provider Interface (SPI) mechanism that generates SyncProvider instances to be used by disconnected RowSet objects.
SyncFactoryException - Exception in javax.sql.rowset.spi
Indicates an error with SyncFactory mechanism.
SyncFactoryException() - Constructor for exception javax.sql.rowset.spi.SyncFactoryException
Creates new SyncFactoryException without detail message.
SyncFactoryException(String) - Constructor for exception javax.sql.rowset.spi.SyncFactoryException
Constructs an SyncFactoryException with the specified detail message.
SyncProvider - Class in javax.sql.rowset.spi
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 in javax.sql.rowset.spi
Indicates an error with the SyncProvider mechanism.
SyncProviderException() - Constructor for exception javax.sql.rowset.spi.SyncProviderException
Creates a new SyncProviderException object without a detail message.
SyncProviderException(String) - Constructor for exception javax.sql.rowset.spi.SyncProviderException
Constructs a SyncProviderException object with the specified detail message.
SyncProviderException(SyncResolver) - Constructor for exception javax.sql.rowset.spi.SyncProviderException
Constructs a SyncProviderException object with the specified SyncResolver instance.
SyncResolver - Interface in javax.sql.rowset.spi
Defines a framework that allows applications to use a manual decision tree to decide what should be done when a synchronization conflict occurs.

T

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 interface javax.sql.rowset.CachedRowSet
Converts this CachedRowSet object to a Collection object that contains all of this CachedRowSet object's data.
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.
TransactionalWriter - Interface in javax.sql.rowset.spi
A specialized interface that facilitates an extension of the standard SyncProvider abstract class so that it has finer grained transaction control.
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 SerialClob object represents so that it has a length of len characters.

U

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 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 interface javax.sql.rowset.CachedRowSet
Immediately reverses the last update operation if the row has been modified.
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.
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.
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 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 columns for this RowSet object.
unwrap(Class<T>) - Method in class javax.sql.rowset.RowSetMetaDataImpl
Returns an object that implements the given interface to allow access to non-standard methods, or standard methods not exposed by the proxy.
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.

W

wasNull() - Method in class javax.sql.rowset.serial.SQLInputImpl
Ascertains whether the last value read from this SQLInputImpl object was null.
WebRowSet - Interface in javax.sql.rowset
The standard interface that all implementations of a WebRowSet must implement.
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.
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.
writeNClob(NClob) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes an SQL NCLOB value to the stream.
writeNString(String) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes the next attribute to the stream as a String in the Java programming language.
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.
writeRowId(RowId) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes an SQL ROWID value to the stream.
writeShort(short) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes a short in the Java programming language to this SQLOutputImpl object.
writeSQLXML(SQLXML) - Method in class javax.sql.rowset.serial.SQLOutputImpl
Writes an SQL XML value to the stream.
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 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 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

XmlReader - Interface in javax.sql.rowset.spi
A specialized interface that facilitates an extension of the SyncProvider abstract class for XML orientated synchronization providers.
XmlWriter - Interface in javax.sql.rowset.spi
A specialized interface that facilitates an extension of the SyncProvider abstract class for XML orientated synchronization providers.
A B C D E F G H I J L N P R S T U W X 
JSR 114 Maintenance Release 1.2