|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
RowSetReaderImpl object
that a given parameter is an ASCII stream.
CachedRowSetImpl object's cursor to the row number
specified.
CachedRowSetImpl object's cursor to the row number
specified.
ResultSet object.
JoinRowSetImpl object's cursor to the row number
specified.
CachedRowSetImpl object's cursor to the row number
specified.
CachedRowSetImpl
object.
CachedRowSetImpl object
using the given Connection object.
CachedRowSetImpl
object.
CachedRowSetImpl object
using the given Connection object.
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.
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.
CachedRowSet object to the underlying data source.
CachedRowSet object
using the specified Connection object to establish a
connection to the data source.
PropertyChangeListener to the listener list.
PropertyChangeListener to the listener list.
The listener is registered for all bound properties.
PropertyChangeListener to the listener list.
RowSet object to this
JoinRowSet object.
RowSet object to the JOIN relation
and sets the designated column as the match column.
RowSet object to the JOIN relationship
and sets the designated column as the match column.
RowSet objects to the JOIN relationship
and sets the designated columns as the match columns.
RowSet objects to the JOIN relationship
and sets the designated columns as the match columns.
RowSet object to this JoinRowSet
object.
RowSet object to this JoinRowSet
object and sets the designated column as the match column for
the RowSet object.
JoinRowSet object and
sets the designated column as the match column.
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.
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.
RowSet
object.
CachedRowSetImpl object's cursor to the end of
the rowset, just after the last row.
ResultSet object, just after the
last row.
JoinRowSetImpl object's cursor to the end of
the rowset, just after the last row.
CachedRowSetImpl object's cursor to the end of
the rowset, just after the last row.
InputStream object that will be
returned by the method getAsciiStream,
which is specified in the ResultSet interface.
RowSetReaderImpl object
that a given parameter is a binary stream.
Row
The class BaseRow stores
a row's original values as an array of Object
values, which can be retrieved with the method getOrigRow.RowSet object with its basic functionality.BaseRowSet object initialized with
a default Vector object for its listeners
field.
javax.sql.rowset.BaseRowSet which contains
changes necessary to support using RowSets as java beans.CachedRowSetImpl object's cursor to the front of
the rowset, just before the first row.
ResultSet object, just before the
first row.
JoinRowSetImpl object's cursor to the front of
the rowset, just before the first row.
CachedRowSetImpl object's cursor to the front of
the rowset, just before the first row.
InputStream object that will be
returned by the method getBinaryStream, which is
specified in the ResultSet interface.
CachedRowSet object's SyncProvider
to commit the changes when acceptChanges() is called.
JOIN providing a cross product of two tables
CachedRowSet must implement.CachedRowSet interface.CachedRowSetImpl object with
the capacity to hold 100 rows.
CachedRowSetImpl instance with the same default properties as
as the zero parameter constructor.
RIOptimisticProvider object
internally to read data into it.RIOptimisticProvider implementation to
propagate changes back to the data source from which the rowset got its data.CachedRowSetX must implement.CachedRowSetX interface.CachedRowSetXImpl object instance.
CachedRowSetXImpl instance with the same default properties as
as the zero parameter constructor.
CachedRowSetImpl object and notifies listeners that
a row has changed.
ResultSet object and notifies listeners that a row
has changed.
JoinRowSetImpl object and notifies listeners that
a row has changed.
CachedRowSetImpl object and notifies listeners that
a row has changed.
Reader object that will be
returned by the method getCharacterStream,
which is specified in the ResultSet interface.
start and continuing for length
number of characters.
deleted field for this Row object to
false.
inserted field for this Row object to
false.
RowSet
object's internal representation of the parameters to be set in
this RowSet object's command when it is executed.
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.
CachedRowSetImpl
object.
ResultSet object.
UnsupportedOperationException if called.
CachedRowSetImpl
object.
RowSet object containing by the same data
as this CachedRowSetImpl object.
RowSet object containing by the same data
as this CachedRowSetImpl object.
RowSet object containing by the same data
as this CachedRowSetXImpl object.
CachedRowSetImpl objecy and releases any resources
it was using.
ResultSet object's database and
JDBC resources immediately instead of waiting for
this to happen when it is automatically closed.
CachedRowSetImpl objecy and releases any resources
it was using.
PreparedStatement and
ResultSet objects.
ResultSet object.
CachedRowSetImpl object has been updated.
CachedRowSetImpl object has been updated.
JoinRowSetImpl object has been updated.
CachedRowSetImpl object has been updated.
CachedRowSetImpl object has been updated.
CachedRowSet object has been updated.
CachedRowSet object has been updated.
CachedRowSet object has been updated.
CachedRowSet object has been updated.
acceptChanges()
methods
JdbcRowSet object by
wrapping the internal Connection object and calling
its commit method.
acceptChanges()
methods
CachedRowSet object's SyncProvider contains
a Connection object from the ResultSet or JDBC
properties passed to it's constructors.
JdbcRowSet contains a Connection object from
the ResultSet or JDBC properties passed to it's constructors.
acceptChanges method since the last call to either the
commit or rollback methods.
RowSet object.
RowSet object that is a deep copy of
this CachedRowSetImpl object's data, including
constraints.
RowSet object that is a deep copy of
this CachedRowSetImpl object's data, including
constraints.
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.
RowSet object that is a deep copy of
a CachedRowSet object instance data.
CachedRowSet object that is a copy of
this CachedRowSetImpl object's data only.
CachedRowSet object that is a copy of
this CachedRowSetImpl object's data only.
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.
RowSet object that is a deep copy of
a CachedRowSet object instance data.
RowSet object that is a copy of
this CachedRowSetImpl object's table structure
and the constraints only.
RowSet object that is a copy of
this CachedRowSetImpl object's table structure
and the constraints only.
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.
CachedRowSet object
instance.
RowSet object backed by the same data as
that of this CachedRowSetImpl object and sharing a set of cursors
with it.
RowSet object backed by the same data as
that of this CachedRowSetImpl object and sharing a set of cursors
with it.
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.
RowSet object backed by the same data as
that of this CachedRowSet object.
RowSet object
that is using this SyncProvider object.
RowSet object
that is using this SyncProvider object.
RowSet object
that is using this SyncProvider object.
RowSet object was
attempting to delete a row in the data source.
CachedRowSetImpl object and
notifies listeners registered with this rowset that a row has changed.
ResultSet object
and from the underlying database and also notifies listeners that a row
has changed.
JoinRowSetImpl object and
notifies listeners registered with this rowset that a row has changed.
CachedRowSetImpl object and
notifies listeners registered with this rowset that a row has changed.
name is one of
the array elements in the fields properties,
colDef, or data and this
XmlReaderContentHandler object's state is not
INITIAL.
SAXParseException object.
FilteredRowSet object
internal methods (not public) that control the RowSet object's
cursor moving from row to the next.
FilteredRowSet object
to check whether the value lies between the filtering criterion (or criteria
if multiple constraints exist) set using the setFilter() method.
FilteredRowSet object
to check whether the value lies between the filtering criteria set
using the setFilter method.
CachedRowSetImpl object with data,
using the given connection to produce the result set from
which data will be read.
CachedRowSetImpl object with data.
ResultSet object for which this
JdbcRowSet object is a wrapper, effectively
making the result set a JavaBeans component.
JoinRowSetImpl object with data.
JoinRowSetImpl object with data,
using the given connection to produce the result set from
which data will be read.
CachedRowSetImpl object with data,
using the given connection to produce the result set from
which data will be read.
CachedRowSetImpl object with data.
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.
CachedRowSet object with data, using the
given connection to produce the result set from which the data will be read.
JOIN providing a a full JOIN.
FilteredRowSet must implement.FilteredRowSet interface.FilteredRowSet
FilteredRowSet with a specified synchronization
provider.
CachedRowSetImpl
object's columns to its column number.
JdbcRowSetImpl column name to its
JdbcRowSetImpl column index and reflects this on
the internal ResultSet object.
CachedRowSetImpl
object's columns to its column number.
CachedRowSetImpl object's cursor to the first row
and returns true if the operation was successful.
ResultSet object.
JoinRowSetImpl object's cursor to the first row
and returns true if the operation was successful.
CachedRowSetImpl object's cursor to the first row
and returns true if the operation was successful.
CachedRowSetImpl object as an Array object
in the Java programming language.
CachedRowSetImpl object as an Array object
in the Java programming langugage.
ResultSet object as an Array object.
ResultSet object as an Array object.
JoinRowSetImpl object as an Array object
in the Java programming lanugage.
JoinRowSetImpl object as an Array object
in the Java programming lanugage.
CachedRowSetImpl object as an Array object
in the Java programming language.
CachedRowSetImpl object as an Array object
in the Java programming langugage.
SerialArray
object.
SerialArray
object, using the given type map for the custom
mapping of each element when the elements are SQL UDTs.
SerialArray object, starting with the
element at the given index and containing the given number
of consecutive elements.
SerialArray object, starting with the
element at the given index and containing the given number
of consecutive elements.
CachedRowSetImpl object as a java.io.InputStream
object.
CachedRowSetImpl object as a java.io.InputStream
object.
ResultSet object as
a stream of ASCII characters.
ResultSet object as a stream of
ASCII characters.
JoinRowSetImpl object as a
java.sql.Timestamp object.
UnsupportedOperationException if it is called.
CachedRowSetImpl object as a java.io.InputStream
object.
CachedRowSetImpl object as a java.io.InputStream
object.
CLOB value designated by this SerialClob
object as an ascii stream.
Object values containing the
attributes of the SQL structured type that this
SerialStruct object represents.
SerialStruct represents as an array of
Object values, using the given type map for
custom mapping if appropriate.
JdbcRowSet.
JdbcRowSet contains a Connection object from
the original ResultSet or JDBC properties passed to it.
SerialArray
object.
SerialArray object.
Ref.
getBigDecimal(String columnName)
method instead
CachedRowSetImpl object as a
java.math.BigDecimal object.
CachedRowSetImpl object as a
java.math.BigDecimal object.
ResultSet object as a
java.math.BigDecimal with full precision.
ResultSet object as a
java.math.BigDecimal with full precision.
getBigDecimal(String columnName)
instead
JoinRowSetImpl object as a
java.math.BigDecimal object.
JoinRowSetImpl object as a
java.math.BigDecimal object.
getBigDecimal(String columnName)
method instead
CachedRowSetImpl object as a
java.math.BigDecimal object.
CachedRowSetImpl object as a
java.math.BigDecimal object.
CachedRowSetImpl object as a java.io.InputStream
object.
CachedRowSetImpl object as a java.io.InputStream
object.
ResultSet object as a binary stream of
uninterpreted bytes.
ResultSet object as a stream of uninterpreted
bytes.
java.io.InputStream object.
CachedRowSetImpl object as a java.io.InputStream
object.
CachedRowSetImpl object as a java.io.InputStream
object.
SerialBlob object as an input stream.
CachedRowSetImpl object as a Blob object
in the Java programming language.
CachedRowSetImpl object as a Blob object
in the Java programming language.
ResultSet object as a Blob object.
ResultSet object as a Blob object.
JoinRowSetImpl object as a Blob object
in the Java programming lanugage.
JoinRowSetImpl object as a Blob object
in the Java programming lanugage.
CachedRowSetImpl object as a Blob object
in the Java programming language.
CachedRowSetImpl object as a Blob object
in the Java programming language.
CachedRowSetImpl object as a
boolean value.
boolean value.
ResultSet object as
a boolean.
ResultSet object as
a boolean.
JoinRowSetImpl object as a
boolean value.
boolean value.
CachedRowSetImpl object as a
boolean value.
boolean value.
CachedRowSetImpl object as a
byte value.
byte value.
ResultSet object as
a byte.
ResultSet object as
a byte.
JoinRowSetImpl object as a
byte value.
byte value.
CachedRowSetImpl object as a
byte value.
byte value.
CachedRowSetImpl object as a
byte array value.
byte array.
ResultSet object as
a byte array in the Java programming language.
ResultSet object as
a byte array in the Java programming language.
JoinRowSetImpl object as a
byte array value.
CachedRowSetImpl object as a
byte array value.
byte array.
SerialBlob object to
another array of bytes.
tableName property
resides.
tableName property
resides.
java.io.Reader object.
java.io.Reader object.
ResultSet object as a
java.io.Reader object.
ResultSet object as a
java.io.Reader object.
java.io.Reader object.
java.io.Reader object.
java.io.Reader object.
java.io.Reader object.
SerialClob object's data as a stream
of Unicode characters.
CachedRowSetImpl object as a Clob object
in the Java programming language.
CachedRowSetImpl object as a Clob object
in the Java programming language.
ResultSet object as a Clob object.
ResultSet object as a Clob object.
JoinRowSetImpl object as a Clob object
in the Java programming lanugage.
JoinRowSetImpl object as a Clob object
in the Java programming lanugage.
CachedRowSetImpl object as a Clob object
in the Java programming language.
CachedRowSetImpl object as a Clob object
in the Java programming language.
Row object
has been changed.
String.
String which contains the catalog name set for the column or
null.
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.
JOIN providing a inner join between two tables.
RowSet object was
attempting to insert a row into the data source.
CachedRowSet object's
insert row.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.
CachedRowSet.populate
methods.
BitSet object
maintained by this InsertRow object.
RowSetMetaData object with the values
in the given ResultSetMetaData object.
RowSet implementation to start using
the standard facilities provided by a BaseRowSet
instance.
CachedRowSetImpl object's insert
row into this rowset immediately following the current row.
CachedRowSetImpl object's insert
row into this rowset immediately following the current row.
ResultSet object and into the database
and also notifies listeners that a row has changed.
JoinRowSetImpl object's insert
row into this rowset immediately following the current row.
CachedRowSetImpl object's insert
row into this rowset immediately following the current row.
CachedRowSetImpl object's cursor to the first
row and returns true if the operation is successful.
internalFirst() implementation.
CachedRowSetImpl object's cursor to the first
row and returns true if the operation is successful.
CachedRowSetImpl object's cursor to the last
row and returns true if the operation is successful.
internalLast() implementation.
CachedRowSetImpl object's cursor to the last
row and returns true if the operation is successful.
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() implementation.
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.
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.
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() implementation.
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.
internalUseInstance flag tells to ignore exceptional conditions
with regard to the rowset not being executed.
CachedRowSetImpl object.
ResultSet object.
JoinRowSetImpl object.
CachedRowSetImpl object.
CachedRowSetImpl object.
ResultSet object.
JoinRowSetImpl object.
CachedRowSetImpl object.
InsertRow object has a value
for every column that cannot be null.
true if this rowset is in an executed state
true if this rowset is in an executed state
true if this rowset is in an executed state
CachedRowSetImpl object.
ResultSet object.
JoinRowSetImpl object.
CachedRowSetImpl object.
CachedRowSetImpl object.
ResultSet object.
JoinRowSetImpl object.
CachedRowSetImpl object.
NULL value in the designated column.
boolean indicating whether this
RowSet object is read-only.
WHERE clause.
JdbcRowSet must implement.JdbcRowSet interface.JdbcRowSet object.
JdbcRowSet object given a
valid Connection object.
JdbcRowSet object using the
URL, username, and password arguments supplied.
JdbcRowSet object using the given valid
ResultSet object.
JdbcRowSetX must implement.JdbcRowSetX interface.JdbcRowSetXImpl object instance.
JdbcRowSetX object given a
valid Connection object instance.
JdbcRowSetX object using the standard
JDBC URL and username and password parameters.
JdbcRowSetX object using a given valid
ResultSet object instance.
JoinRowSet interface provides a mechanism for combining related
data from different RowSet objects into one JoinRowSet
object, which represents an SQL JOIN.JoinRowSet
interface providing an SQL JOIN between RowSet
objects.JoinRowSetImpl class.
JOIN providing a left outer join between two
tables.
CachedRowSetImpl object's cursor to the last row
and returns true if the operation was successful.
ResultSet object.
JoinRowSetImpl object's cursor to the last row
and returns true if the operation was successful.
CachedRowSetImpl object's cursor to the last row
and returns true if the operation was successful.
SerialBlob
object's array of bytes.
SerialClob
object's array of characters.
InsertRow object's internal
BitSet object that corresponds to the specified column
in this InsertRow object.
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.
CachedRowSetImpl object to
the current row.
JoinRowSetImpl object to
the current row.
CachedRowSetImpl object to
the current row.
CachedRowSetImpl object
to the insert row.
CachedRowSetImpl object
to the insert row.
JoinRowSetImpl object
to the insert row.
CachedRowSetImpl object
to the insert row.
SyncProvider implementation
does not support synchronization between a RowSet
object and the SQL VIEW used to populate it.
RowSet object
was attempting to update, delete or insert a row in the data source.
true if the new cursor position is a
valid row.
ResultSet
object down one row from its current position.
true if the new cursor position is a
valid row.
true if the new cursor position is a
valid row.
CachedRowSetImpl object
containing the number of rows specified by page size.
CachedRowSetImpl object
containing the number of rows specified by page size.
CachedRowSet.
RowSet object that its cursor has moved.
RowSet object that
one of its rows has changed.
RowSet
object that its entire contents have changed.
BaseRow
object.
WebRowSet implementation.
FilteredRowSet objects to describe their filters.CachedRowSetImpl object with data from
the given ResultSet object.
CachedRowSet object with data from
the given ResultSet object.
CachedRowSetImpl object with data from
the given ResultSet object.
CachedRowSet object with data from
the given ResultSet object.
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.
CachedRowSet object with data from
the given ResultSet object.
CachedRowSet object with data from
the given ResultSet object.
SerialBlob object where
the given pattern of bytes begins, starting the search at the
specified position.
SerialBlob object where
the given Blob object begins, starting the search at the
specified position.
SerialClob object
where the given String object begins, starting
the search at the specified position.
SerialClob object
where the given Clob signature begins, starting
the search at the specified position.
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.
ResultSet object.
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.
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.
SyncResolver object.
SyncResolver object.
CachedRowSet.
JOIN providing a right outer join between
two tables.
RIOptimisticProvider object initialized with the
fully qualified class name of this SyncProvider implementation
and a default reader and writer.
RowSet implementations as the
default persistence provider.
Row object with the given number of columns.
Row object with the given number of columns
and with its array of original values initialized to the given array.
RowSet object's columns.RowSet object.RowSetMetaDataXSQLException that provides information
about database warnings set on RowSet objects.RowSetWarning object
with the given value for the reason; SQLState defaults to null,
and vendorCode defaults to 0.
RowSetWarning object.
RowSetWarning object initialized with the
given values for the reason and SQLState.
RowSetWarning object initialized
with the given values for the reason, SQLState and vendorCode.
ARRAY value from the stream and
returns it as an Array object in the Java programming
language.
SQLInputImpl object
as a stream of ASCII characters.
SQLInputImpl object
as a java.math.BigDecimal.
SQLInputImpl object
as a stream of uninterpreted bytes.
BLOB value at the head of this
SQLInputImpl object as a Blob object
in the Java programming language.
SQLInputImpl object as
a boolean in the Java programming language.
SQLInputImpl object as
a byte in the Java programming language.
SQLInputImpl object
as an array of bytes.
SQLInputImpl object
as a stream of Unicode characters.
CLOB value at the head of this
SQLInputImpl object as a Clob object
in the Java programming language.
RowSet object with that data.
SQLInputImpl as
a java.sql.Date object.
SQLInputImpl object
as a double in the Java programming language.
SQLInputImpl object
as a float in the Java programming language.
SQLInputImpl object
as an int in the Java programming language.
SQLInputImpl object
as a long in the Java programming language.
SQLInputImpl
object as an Object in the Java programming language.
SQLInputImpl object
as a Ref object in the Java programming language.
SQLInputImpl object
as a short in the Java programming language.
SQLInputImpl object as
a String in the Java programming language.
SQLInputImpl object as
a java.sql.Time object.
SQLInputImpl object as
a java.sql.Timestamp object.
DATALINK value from the stream and
returns it as an URL object in the Java programming
language.
WebRowSet object, getting its input from
the given java.io.Reader object.
WebRowSet object, getting its input from
the given java.io.InputStream object.
WebRowSet object from the given
input stream in XML format.
JoinRowSet object in its XML format.
WebRowSet
WebRowSet object in its XML format.
WebRowSet
object.
WebRowSet object in its XML format from the given
Reader object.
WebRowSet
object.
updateRow or deleteRow.
ResultSet
object with its most recent value in the database.
updateRow or deleteRow.
updateRow or deleteRow.
CachedRowSetImpl
object and sends a rowSetChanged event object to all
registered listeners.
CachedRowSetImpl
object and sends a rowSetChanged event object to all
registered listeners.
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.
CachedRowSet
object and sends a rowSetChanged event to all
registered listeners.
Savepoint object from the current
transaction.
PropertyChangeListener from the listener list.
PropertyChangeListener from the listener list.
RowSet object's list of listeners.
CachedRowSetImpl object to its original state,
that is, its state before the last set of changes.
CachedRowSetImpl object to its original state,
that is, its state before the last set of changes.
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.
CachedRowSet object to its original
value, that is, its value before the last set of changes.
acceptChanges()
methods
acceptChanges()
to the last Savepoint transaction marker.
JdbcRowSet object by
wrapping the internal Connection object and calling its
rollback method.
JdbcRowSet back to the
last Savepoint transaction marker.
acceptChanges()
methods
acceptChanges()
to the last Savepoint transaction marker.
CachedRowSet object's SyncProvider contains
a Connection object from the original ResultSet
or JDBC properties passed to it.
CachedRowSet object's SyncProvider contains
a Connection object from the original ResultSet
or JDBC properties passed to it.
JdbcRowSet contains a Connection object from
the original ResultSet or JDBC properties passed to it.
JdbcRowSet contains a Connection object from
the original ResultSet or JDBC properties passed to it.
Savepoint object.
CachedRowSetImpl
object has been updated.
JoinRowSetImpl
object has been updated.
CachedRowSetImpl
object has been updated.
WebRowSet implementation.
SQLInputImpl object initialized with the
given array of attributes and the given type map.
SQLOutputImpl object
initialized with the given vector of attributes and
type map.
ARRAY value.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 object from the given
Array object.
BLOB value.SerialBlob object that is serializable version of
the given byte array.
SerialBlob object that is a serializable
version of the given Blob object.
CLOB value.SerialClob that is serializable version of
a char[] array.
SerialClob object that is a serializable
version of the given Clob object.
DATALINK value.SerialDatalink object from the given
java.net.URL object.
BLOB, CLOB, STRUCT or ARRAY in
addition to SQL types such as DATALINK and JAVAOBJECTSerialException without a
message.
SerialException with the
specified message.
JAVA_OBJECT value.SerialJavaObject helper class.
SerialRef object given any Ref
object instance.
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 object from the
given SQLData object, using the given type
map to custom map it to a class in the Java programming
language.
SyncProvider
instances to be used by disconnected RowSet objects.SyncFactory mechanism.SyncFactoryException without detail message.
SyncFactoryException with the specified
detail message.
RowSet objects.SyncProvider object.
SyncProvider mechanism.SyncProviderException object without a detail message.
SyncProviderException object with the specified
detail message.
SyncProviderException object with the specified
SyncResolver instance.
SQLExceptions for each
conflict can be
retrieved.Array object in the
Java programming language.
java.io.InputStream object,
which will have the specified number of bytes.
CLOB value that this Clob object represents,
starting at position pos.
Connection object with this
JdbcRowSet
JdbcRowSet contains a Connection object from
the original ResultSet or JDBC properties passed to it.
boolean
value.
java.lang.BigDecimal value.
java.io.InputStream
object, which will have the specified number of bytes.
BLOB
value that this Blob object represents.
Blob object in
the Java programming language.
boolean in the
Java programming language.
byte in the Java
programming language.
BLOB value that
this Blob object represents, starting at position
pos, and returns the number of bytes written.
byte array to the
BLOB value that this Blob object represents
and returns the number of bytes written.
boolean.
tableName
property.
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.
java.io.Reader
object, which will have the specified number of characters.
CLOB value that this Clob object
represents, at position pos.
Clob object in
the Java programming language.
columnCatalogNames property.
columnCatalogNames property.
columnCatalogNames property.
columnCatalogNames property.
RowSet
object for which this RowSetMetaDataImpl object was created.
columnNames property.
columnNames property.
columnNames property.
columnNames property.
InsertRow object's
internal array of original values that corresponds to the
designated column with the given value.
CachedRowSet.updateXXX
methods.
columnSchemaNames property.
columnSchemaNames property.
columnSchemaNames property.
columnSchemaNames property.
columnTableNames property.
columnTableNames property.
columnTableNames property.
columnTableNames property.
java.sql.Types.
CachedRowSetImpl object's command property
to the given String object and clears the parameters,
if any, that were set for the previous command.
JdbcRowSet object's command property to
the given String object and clears the parameters, if any,
that were set for the previous command.
CachedRowSetImpl object's command property
to the given String object and clears the parameters,
if any, that were set for the previous command.
RowSet object's command property to
the given String object and clears the parameters, if any,
that were set for the previous command.
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.
RowSet object's command property to
the given String object and clears the parameters, if any,
that were set for the previous command.
RowSet object to
the specified concurrency.
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.
RowSet object to
the specified concurrency.
JdbcRowSet object's connection property
to the given Connection object.
boolean.
SyncProvider classifications.
dataSourceName property for this JdbcRowSet
object to the given logical name and sets this JdbcRowSet object's
Url property to null.
DataSource name property for this RowSet
object to the given logical name and sets this RowSet object's
Url property to null.
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.
DataSource name property for this RowSet
object to the given logical name and sets this RowSet object's
Url property to null.
java.sql.Date
value.
java.sql.Date
object.
Row object's deleted field
to true.
double in the
Java programming language.
boolean whether or not the driver will
scan for escape syntax and do escape substitution before sending SQL
statements to the database.
ResultSet object will be processed.
RowSet object will be
processed.
RowSet object will be
processed.
ResultSet object.
RowSet object to the given number of
rows.
RowSet object to the given number of
rows.
Predicate object to a FilteredRowSet
object.
float in the
Java programming language.
JdbcRowSetX object
to the given holdability.
insertableColumns property.
insertableColumns property.
insertableColumns property.
insertableColumns property.
Row object's inserted field
to true.
int in the Java
programming language.
JOIN that this JoinRowSet
object will use.
JOIN imposed
on tables contained within the JoinRowSet object instance.
CachedRowSetImpl object's
keyCols field with the given array of column
numbers, which forms a key for uniquely identifying a row
in this rowset.
JoinRowSetImpl object's
keyCols field with the given array of column
numbers, which forms a key for uniquely identifying a row
in this rowset.
CachedRowSetImpl object's
keyCols field with the given array of column
numbers, which forms a key for uniquely identifying a row
in this rowset.
CachedRowSet object's keyCols
field with the given array of column numbers, which forms a key
for uniquely identifying a row in this rowset.
SyncProvider
implementation provided by the SyncFactory.
SyncProvider
implementations provided by the SyncFactory SPI.
long in the Java
programming language.
int
object.
String
object.
int
object.
String
object.
int
object.
String
object.
int
object.
String
object.
RowSet
object.
RowSet
object.
RowSet
object.
RowSet
object.
RowSet object to the given number.
RowSet object may contain to
the given number.
RowSet object may contain to
the given number.
RowSet object may contain to
the given number. If this limit is exceeded, the excess rows are
silently dropped.
RowSet object may contain to
the given number.
CachedRowSetImpl object
with the given RowSetMetaData object.
JoinRowSetImpl object
with the given RowSetMetaData object.
CachedRowSetImpl object
with the given RowSetMetaData object.
CachedRowSet object with
the given RowSetMetaData object.
RowSetWarning object.
NULL.
NULL.
NULL to the given constant from the interface
ResultSetMetaData.
Object in the Java
programming language.
Object value.
Object in the Java
programming language.
CachedRowSet object as the original
row.
CachedRowSet object's page-size.
JdbcRowSet object
to the given String object.
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.
RowSet object to the given String
object.
JdbcRowSet object's preparedtsatement property
to the given PreparedStatemennt object.
printStatements property.
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.
RowSet object's readOnly property to the given boolean.
RowSet object's readOnly property to the given boolean.
Ref object in
the Java programming language.
RowSet object.
RowSet object.
RowSet object that is being synchronized.
RowSet object that is being synchronized.
JdbcRowSet object's resultset property
to the given ResultSet object.
Savepoint object that represents it.
Savepoint object that represents it.
tableName
property.
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.
WHERE clause to the given boolean value.
short in the
Java programming language.
showDeleted to the given
boolean value, which determines whether
rows marked for deletion appear in the set of current rows.
showDeleted to the given
boolean value, which determines whether
rows marked for deletion appear in the set of current rows.
showDeleted to the given
boolean value.
boolean.
String
value.
String to the CLOB
value that this Clob object designates at the position
pos.
len characters of str, starting
at character offset, to the CLOB value
that this Clob represents.
SyncProvider and attempts to load
load the new provider using the SyncFactory SPI.
SyncProvider and attempts to load
load the new provider using the SyncFactory SPI.
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.
SyncProvider objec for this CachedRowSet
object to the one specified.
SyncResolver object for this
SyncProviderException object to the one supplied.
CachedRowSet
object was derived to the given table name.
java.sql.Time
value.
java.sql.Time
object.
java.sql.Timestamp value.
java.sql.Timestamp object.
RowSet object to the given
constant.
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).
RowSet object to the given
constant.
RowSet object to the specified type.
RowSet object to the specified type.
The default type is ResultSet.TYPE_SCROLL_INSENSITIVE.
RowSet object to the specified type.
java.util.Map object as the type map
associated with the Connection object for this
RowSet object.
updatableColumns property.
updatableColumns property.
updatableColumns property.
updatableColumns property.
updated field for this Row object to
true if one or more of its column values has been changed.
JdbcRowSet object
to the given String object and sets the dataSource name
property to null.
RowSet object
to the given String object and sets the dataSource name
property to null.
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.
RowSet object
to the given String object and sets the dataSource name
property to null.
JdbcRowSet object
to the given user name.
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.
RowSet object
to the given user name.
WebRowSet object's reader to the given
XmlReader object.
WebRowSet object's writer to the given
XmlWriter object.
CachedRowSetImpl object.
JoinRowSetImpl object.
CachedRowSetImpl object.
CachedRowSet
object.
CachedRowSet
object.
XmlReaderContentHandler object's tag
field if the given name is the key for a tag and this object's state
is not INITIAL.
true if this JoinRowSet object supports
an SQL CROSS_JOIN and false if it does not.
true if this JoinRowSet object supports
an SQL FULL_JOIN and false if it does not.
true if this JoinRowSet object supports
an SQL INNER_JOIN and false if it does not.
true if this JoinRowSet object supports
an SQL LEFT_OUTER_JOIN and false if it does not.
true if this JoinRowSet object supports
an SQL RIGHT_OUTER_JOIN and false if it does not.
SyncProvider
abstract class.
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.
SyncProvider abstract class so that it has finer grained
transaction control.CachedRowSet object that contains the data
in this JoinRowSet object.
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.
CachedRowSetImpl object to a collection
of tables.
CachedRowSetImpl object
as a Collection object.
CachedRowSetImpl object
as a Collection object.
CachedRowSetImpl object to a collection
of tables.
CachedRowSetImpl object
as a Collection object.
CachedRowSetImpl object
as a Collection object.
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.
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.
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.
CachedRowSet object to a Collection
object that contains all of the CachedRowSet object's values.
CachedRowSet object
to a Collection object.
CachedRowSet object
to a Collection object.
BLOB value that this Blob
object represents to be len bytes in length.
CLOB value that this Clob
designates to have a length of len
characters.
RowSetReaderImpl object
that a given parameter is a Unicode stream.
SyncProvider implementation
supports synchronization between a RowSet object and
the SQL VIEW used to populate it.
RowSet object was
attempting to update a row in the data source.
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
CachedRowSetImpl object if the row has been inserted, and
also notifies listeners the a row has changed.
CachedRowSetImpl object if the row has been inserted, and
also notifies listeners the a row has changed.
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
CachedRowSet
object if the row has been inserted, and also notifies listeners that a
row has changed.
acceptChanges) or population. This method may also be called
while performing updates to the insert row.
undoUpdateundoUpdate() -
Method in interface javax.sql.rowset.CachedRowSet
InputStream object that will be
returned by the method getUnicodeStream,
which is specified in the ResultSet interface.
int
object.
String
object.
int
object.
String
object.
int
object.
String
object.
int
object.
String
object.
RowSet
object.
RowSet
object.
RowSet
object.
RowSet
object.
CachedRowSetImpl object with the given
java.sql.Array values.
CachedRowSetImpl object with the given
java.sql.Array value.
JdbcRowSetImpl object with the given
java.sql.Array values.
JdbcRowSetImpl object with the given
java.sql.Array value.
JoinRowSetImpl object with the given
Array object.
JoinRowSetImpl object with the given
Array object.
CachedRowSetImpl object with the given
java.sql.Array values.
CachedRowSetImpl object with the given
java.sql.Array value.
CachedRowSetImpl object with the given
ASCII stream value.
CachedRowSetImpl object with the given
ASCII stream value.
CachedRowSetImpl object with the given
ASCII stream value.
CachedRowSetImpl object with the given
ASCII stream value.
UnsupportedOperationException
if called.
CachedRowSetImpl object with the given
ASCII stream value.
CachedRowSetImpl object with the given
ASCII stream value.
CachedRowSetImpl object with the given
java.math.BigDecimal object.
CachedRowSetImpl object with the given
java.math.BigDecimal object.
CachedRowSetImpl object with the given
java.math.BigDecimal object.
CachedRowSetImpl object with the given
java.math.BigDecimal object.
java.math.BigDecimal
value.
java.sql.BigDecimal
value.
JoinRowSetImpl object with the given
java.math.BigDecimal object.
JoinRowSetImpl object with the given
java.math.BigDecimal object.
CachedRowSetImpl object with the given
java.math.BigDecimal object.
CachedRowSetImpl object with the given
java.math.BigDecimal object.
CachedRowSetImpl object with the given
java.io.InputStream object.
CachedRowSetImpl object with the given
java.io.InputStream object.
CachedRowSetImpl object with the given
java.io.InputStream object.
CachedRowSetImpl object with the given
java.io.InputStream object.
JoinRowSetImpl object with the given
java.io.InputStream object.
JoinRowSetImpl object with the given
java.io.InputStream object.
CachedRowSetImpl object with the given
java.io.InputStream object.
CachedRowSetImpl object with the given
java.io.InputStream object.
CachedRowSetImpl object with the given
java.sql.Blob value.
CachedRowSetImpl object with the given
java.sql.Blob value.
JdbcRowSetImpl object with the given
java.sql.Blob value.
JdbcRowSetImpl object with the given
java.sql.Blob value.
JoinRowSetImpl object with the given
Blob value.
JoinRowSetImpl object with the given
Blob object.
CachedRowSetImpl object with the given
java.sql.Blob value.
CachedRowSetImpl object with the given
java.sql.Blob value.
CachedRowSetImpl object with the given
boolean value.
CachedRowSetImpl object with the given
boolean value.
CachedRowSetImpl object with the given
boolean value.
CachedRowSetImpl object with the given
boolean value.
boolean value.
boolean value.
JoinRowSetImpl object with the given
boolean value.
JoinRowSetImpl object with the given
boolean value.
CachedRowSetImpl object with the given
boolean value.
CachedRowSetImpl object with the given
boolean value.
CachedRowSetImpl object with the given
byte value.
CachedRowSetImpl object with the given
byte value.
CachedRowSetImpl object with the given
byte value.
CachedRowSetImpl object with the given
byte value.
byte value.
byte value.
JoinRowSetImpl object with the given
byte value.
JoinRowSetImpl object with the given
byte value.
CachedRowSetImpl object with the given
byte value.
CachedRowSetImpl object with the given
byte value.
CachedRowSetImpl object with the given
byte array.
CachedRowSetImpl object with the given
byte array.
CachedRowSetImpl object with the given
byte array.
CachedRowSetImpl object with the given
byte array.
byte array value.
boolean value.
JoinRowSetImpl object with the given
byte array.
JoinRowSetImpl object with the given
byte array.
CachedRowSetImpl object with the given
byte array.
CachedRowSetImpl object with the given
byte array.
CachedRowSetImpl object with the given
java.io.Reader object.
CachedRowSetImpl object with the given
java.io.Reader object.
CachedRowSetImpl object with the given
java.io.Reader object.
CachedRowSetImpl object with the given
java.io.Reader object.
JoinRowSetImpl object with the given
java.io.Reader object.
JoinRowSetImpl object with the given
java.io.Reader object.
CachedRowSetImpl object with the given
java.io.Reader object.
CachedRowSetImpl object with the given
java.io.Reader object.
CachedRowSetImpl object with the given
double value.
CachedRowSetImpl object with the given
double value.
JdbcRowSetImpl object with the given
double value.
JdbcRowSetImpl object with the given
double value.
JoinRowSetImpl object with the given
Clob object.
JoinRowSetImpl object with the given
Clob object.
CachedRowSetImpl object with the given
double value.
CachedRowSetImpl object with the given
double value.
CachedRowSetImpl object with the given
Date object.
CachedRowSetImpl object with the given
Date object.
CachedRowSetImpl object with the given
Date object.
CachedRowSetImpl object with the given
Date object.
java.sql.Date value.
java.sql.Date value.
JoinRowSetImpl object with the given
Date object.
JoinRowSetImpl object with the given
Date object.
CachedRowSetImpl object with the given
Date object.
CachedRowSetImpl object with the given
Date object.
CachedRowSetImpl object with the given
double value.
CachedRowSetImpl object with the given
double value.
CachedRowSetImpl object with the given
double value.
CachedRowSetImpl object with the given
double value.
double value.
double value.
JoinRowSetImpl object with the given
double value.
JoinRowSetImpl object with the given
double value.
CachedRowSetImpl object with the given
double value.
CachedRowSetImpl object with the given
double value.
CachedRowSetImpl object with the given
float value.
CachedRowSetImpl object with the given
float value.
CachedRowSetImpl object with the given
float value.
CachedRowSetImpl object with the given
float value.
float value.
float value.
JoinRowSetImpl object with the given
float value.
JoinRowSetImpl object with the given
float value.
CachedRowSetImpl object with the given
float value.
CachedRowSetImpl object with the given
float value.
CachedRowSetImpl object with the given
int value.
CachedRowSetImpl object with the given
int value.
CachedRowSetImpl object with the given
int value.
CachedRowSetImpl object with the given
int value.
int value.
int value.
JoinRowSetImpl object with the given
int value.
JoinRowSetImpl object with the given
int value.
CachedRowSetImpl object with the given
int value.
CachedRowSetImpl object with the given
int value.
CachedRowSetImpl object with the given
long value.
CachedRowSetImpl object with the given
long value.
CachedRowSetImpl object with the given
long value.
CachedRowSetImpl object with the given
long value.
long value.
long value.
JoinRowSetImpl object with the given
long value.
JoinRowSetImpl object with the given
long value.
CachedRowSetImpl object with the given
long value.
CachedRowSetImpl object with the given
long value.
CachedRowSetImpl object with
null value.
CachedRowSetImpl object with
null value.
null value.
JoinRowSetImpl object with
null value.
JoinRowSetImpl object with
null value.
CachedRowSetImpl object with
null value.
CachedRowSetImpl object with
null value.
CachedRowSetImpl object with the given
Object value.
CachedRowSetImpl object with the given
Object value.
CachedRowSetImpl object with the given
Object value.
CachedRowSetImpl object with the given
Object value.
CachedRowSetImpl object with the given
Object value.
CachedRowSetImpl object with the given
Object value.
CachedRowSetImpl object with the given
Object value.
CachedRowSetImpl object with the given
Object value.
Object value.
Object value.
Object value.
Object value.
JoinRowSetImpl object with the given
Object value.
JoinRowSetImpl object with the given
Object value.
JoinRowSetImpl object with the given
Object value.
JoinRowSetImpl object with the given
Object value.
CachedRowSetImpl object with the given
Object value.
CachedRowSetImpl object with the given
Object value.
CachedRowSetImpl object with the given
Object value.
CachedRowSetImpl object with the given
Object value.
CachedRowSetImpl object with the given
Ref value.
CachedRowSetImpl object with the given
double value.
JdbcRowSetImpl object with the given
double value.
JdbcRowSetImpl object with the given
double value.
JoinRowSetImpl object with the given
Ref value.
JoinRowSetImpl object with the given
Ref value.
CachedRowSetImpl object with the given
double value.
CachedRowSetImpl object with the given
double value.
CachedRowSetImpl object as
updated and notifies listeners registered with this rowset that the
row has changed.
ResultSet object
and notifies listeners that a row has changed.
JoinRowSetImpl object as
updated and notifies listeners registered with this rowset that the
row has changed.
CachedRowSetImpl object as
updated and notifies listeners registered with this rowset that the
row has changed.
CachedRowSetImpl object with the given
short value.
CachedRowSetImpl object with the given
short value.
CachedRowSetImpl object with the given
short value.
CachedRowSetImpl object with the given
short value.
short value.
short value.
JoinRowSetImpl object with the given
short value.
JoinRowSetImpl object with the given
short value.
CachedRowSetImpl object with the given
short value.
CachedRowSetImpl object with the given
short value.
CachedRowSetImpl object with the given
String object.
CachedRowSetImpl object with the given
String object.
CachedRowSetImpl object with the given
String object.
CachedRowSetImpl object with the given
String object.
String value.
String value.
JoinRowSetImpl object with the given
String object.
JoinRowSetImpl object with the given
String object.
CachedRowSetImpl object with the given
String object.
CachedRowSetImpl object with the given
String object.
CachedRowSetImpl object with the given
Time object.
CachedRowSetImpl object with the given
Time object.
CachedRowSetImpl object with the given
Time object.
CachedRowSetImpl object with the given
Time object.
java.sql.Time value.
java.sql.Time value.
JoinRowSetImpl object with the given
Time object.
JoinRowSetImpl object with the given
Time object.
CachedRowSetImpl object with the given
Time object.
CachedRowSetImpl object with the given
Time object.
CachedRowSetImpl object with the given
Timestamp object.
CachedRowSetImpl object with the given
Timestamp object.
CachedRowSetImpl object with the given
Timestamp object.
CachedRowSetImpl object with the given
Timestamp object.
java.sql.Timestamp
value.
java.sql.Timestamp
value.
JoinRowSetImpl object with the given
Timestamp object.
JoinRowSetImpl object with the given
Timestamp object.
CachedRowSetImpl object with the given
Timestamp object.
CachedRowSetImpl object with the given
Timestamp object.
WebRowSet
must implement.WebRowSet interface.WebRowSet object initialized with the
default values for a CachedRowSet object instance.
WebRowSet object initialized with the the
synchronization SPI provider properties as specified in the Hashtable.
XmlReader interface, which
reads and parses an XML formatted WebRowSet object.XmlWriter interface, which writes a
WebRowSet object to an output stream as an XML document.System.out giving the line
number and uri for what caused the warning plus a message explaining
the reason for the warning.
NULL.
ResultSet object had a value of SQL NULL.
NULL.
NULL.
SQLInputImpl object was null.
Array object in the Java
programming language to this SQLOutputImpl
object.
SQLOutputImpl object.
java.math.BigDecimal object in the Java programming
language to this SQLOutputImpl object.
SQLOutputImpl
object.
Blob object in the Java programming language
to this SQLOutputImpl object.
boolean in the Java programming language
to this SQLOutputImpl object.
byte in the Java programming language
to this SQLOutputImpl object.
bytes in the Java programming language
to this SQLOutputImpl object.
SQLOutputImpl object.
Clob object in the Java programming language
to this SQLOutputImpl object.
RowSet object
back to its underlying data source and returns true
if successful.
java.sql.Date object in the Java programming
language to this SQLOutputImpl object.
double in the Java programming language
to this SQLOutputImpl object.
float in the Java programming language
to this SQLOutputImpl object.
int in the Java programming language
to this SQLOutputImpl object.
long in the Java programming language
to this SQLOutputImpl object.
SQLData object.
Ref object in the Java programming language
to this SQLOutputImpl object.
short in the Java programming language
to this SQLOutputImpl object.
String in the Java programming language
to this SQLOutputImpl object.
Struct object in the Java
programming language to this SQLOutputImpl
object.
java.sql.Time object in the Java programming
language to this SQLOutputImpl object.
java.sql.Timestamp object in the Java programming
language to this SQLOutputImpl object.
java.sql.Type.DATALINK object in the Java
programming language to this SQLOutputImpl object.
WebRowSet object as an XML document
using the given java.io.Writer object.
WebRowSet object as an XML document
using the given java.io.OutputStream object.
WebRowSet object to the specified
java.io.Writer output stream as an XML document.
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.
JoinRowSet object to the given
java.io.Writer object in XML format.
WebRowSet for XML proceessing
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.
WebRowSet object with the
data in the given ResultSet object and writes itself
to the given java.io.Writer object in XML format.
WebRowSet object to the given
java.io.Writer object in XML format.
WebRowSet object to the given OutputStream
object in XML format.
WebRowSet object with the
data in the given ResultSet object and writes itself
to the given java.io.OutputStream object in XML format.
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.
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.
WebRowSet object
to the given Writer object in XML format.
WebRowSet object
to the given OutputStream object in XML format.
DefaultHandler interface, which
handles all the errors, fatalerrors and warnings while reading the xml file.SyncProvider abstract class for XML orientated
synchronization providers.WebRowSet object.XmlReaderContentHandler object that will
assist the SAX parser in reading a WebRowSet object in the
format of an XML document.
EntityResolver interface, which
reads and parses an XML formatted WebRowSet object.SyncProvider abstract class for XML orientated
synchronization providers.
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||