-
- All Superinterfaces:
- AutoCloseable, Joinable, ResultSet, RowSet, Wrapper
public interface JdbcRowSet extends RowSet, Joinable
The standard interface that all standard implementations ofJdbcRowSet
must implement.1.0 Overview
A wrapper around aResultSet
object that makes it possible to use the result set as a JavaBeansTM component. Thus, aJdbcRowSet
object can be one of the Beans that a tool makes available for composing an application. Because aJdbcRowSet
is a connected rowset, that is, it continually maintains its connection to a database using a JDBC technology-enabled driver, it also effectively makes the driver a JavaBeans component.Because it is always connected to its database, an instance of
JdbcRowSet
can simply take calls invoked on it and in turn call them on itsResultSet
object. As a consequence, a result set can, for example, be a component in a Swing application.Another advantage of a
JdbcRowSet
object is that it can be used to make aResultSet
object scrollable and updatable. AllRowSet
objects are by default scrollable and updatable. If the driver and database being used do not support scrolling and/or updating of result sets, an application can populate aJdbcRowSet
object with the data of aResultSet
object and then operate on theJdbcRowSet
object as if it were theResultSet
object.2.0 Creating a JdbcRowSet Object
The reference implementation of theJdbcRowSet
interface,JdbcRowSetImpl
, provides an implementation of the default constructor. A new instance is initialized with default values, which can be set with new values as needed. A new instance is not really functional until itsexecute
method is called. In general, this method does the following:- establishes a connection with a database
- creates a
PreparedStatement
object and sets any of its placeholder parameters - executes the statement to create a
ResultSet
object
execute
method is successful, it will set the appropriate privateJdbcRowSet
fields with the following:- a
Connection
object -- the connection between the rowset and the database - a
PreparedStatement
object -- the query that produces the result set - a
ResultSet
object -- the result set that the rowset's command produced and that is being made, in effect, a JavaBeans component
execute
method has not executed successfully, no methods other thanexecute
andclose
may be called on the rowset. All other public methods will throw an exception.Before calling the
execute
method, however, the command and properties needed for establishing a connection must be set. The following code fragment creates aJdbcRowSetImpl
object, sets the command and connection properties, sets the placeholder parameter, and then invokes the methodexecute
.JdbcRowSetImpl jrs = new JdbcRowSetImpl(); jrs.setCommand("SELECT * FROM TITLES WHERE TYPE = ?"); jrs.setURL("jdbc:myDriver:myAttribute"); jrs.setUsername("cervantes"); jrs.setPassword("sancho"); jrs.setString(1, "BIOGRAPHY"); jrs.execute();
The variablejrs
now represents an instance ofJdbcRowSetImpl
that is a thin wrapper around theResultSet
object containing all the rows in the tableTITLES
where the type of book is biography. At this point, operations called onjrs
will affect the rows in the result set, which is effectively a JavaBeans component.The implementation of the
RowSet
methodexecute
in theJdbcRowSet
reference implementation differs from that in theCachedRowSet
TM reference implementation to account for the different requirements of connected and disconnectedRowSet
objects.
-
-
Field Summary
-
Fields inherited from interface java.sql.ResultSet
CLOSE_CURSORS_AT_COMMIT, CONCUR_READ_ONLY, CONCUR_UPDATABLE, FETCH_FORWARD, FETCH_REVERSE, FETCH_UNKNOWN, HOLD_CURSORS_OVER_COMMIT, TYPE_FORWARD_ONLY, TYPE_SCROLL_INSENSITIVE, TYPE_SCROLL_SENSITIVE
-
-
Method Summary
Methods Modifier and Type Method and Description void
commit()
EachJdbcRowSet
contains aConnection
object from theResultSet
or JDBC properties passed to it's constructors.boolean
getAutoCommit()
EachJdbcRowSet
contains aConnection
object from the originalResultSet
or JDBC properties passed to it.RowSetWarning
getRowSetWarnings()
Retrieves the first warning reported by calls on thisJdbcRowSet
object.boolean
getShowDeleted()
Retrieves aboolean
indicating whether rows marked for deletion appear in the set of current rows.void
rollback()
EachJdbcRowSet
contains aConnection
object from the originalResultSet
or JDBC properties passed to it.void
rollback(Savepoint s)
EachJdbcRowSet
contains aConnection
object from the originalResultSet
or JDBC properties passed to it.void
setAutoCommit(boolean autoCommit)
EachJdbcRowSet
contains aConnection
object from the originalResultSet
or JDBC properties passed to it.void
setShowDeleted(boolean b)
Sets the propertyshowDeleted
to the givenboolean
value.-
Methods inherited from interface javax.sql.RowSet
addRowSetListener, clearParameters, execute, getCommand, getDataSourceName, getEscapeProcessing, getMaxFieldSize, getMaxRows, getPassword, getQueryTimeout, getTransactionIsolation, getTypeMap, getUrl, getUsername, isReadOnly, removeRowSetListener, setArray, setAsciiStream, setAsciiStream, setAsciiStream, setAsciiStream, setBigDecimal, setBigDecimal, setBinaryStream, setBinaryStream, setBinaryStream, setBinaryStream, setBlob, setBlob, setBlob, setBlob, setBlob, setBlob, setBoolean, setBoolean, setByte, setByte, setBytes, setBytes, setCharacterStream, setCharacterStream, setCharacterStream, setCharacterStream, setClob, setClob, setClob, setClob, setClob, setClob, setCommand, setConcurrency, setDataSourceName, setDate, setDate, setDate, setDate, setDouble, setDouble, setEscapeProcessing, setFloat, setFloat, setInt, setInt, setLong, setLong, setMaxFieldSize, setMaxRows, setNCharacterStream, setNCharacterStream, setNCharacterStream, setNCharacterStream, setNClob, setNClob, setNClob, setNClob, setNClob, setNClob, setNString, setNString, setNull, setNull, setNull, setNull, setObject, setObject, setObject, setObject, setObject, setObject, setPassword, setQueryTimeout, setReadOnly, setRef, setRowId, setRowId, setShort, setShort, setSQLXML, setSQLXML, setString, setString, setTime, setTime, setTime, setTime, setTimestamp, setTimestamp, setTimestamp, setTimestamp, setTransactionIsolation, setType, setTypeMap, setURL, setUrl, setUsername
-
Methods inherited from interface java.sql.ResultSet
absolute, afterLast, beforeFirst, cancelRowUpdates, clearWarnings, close, deleteRow, findColumn, first, getArray, getArray, getAsciiStream, getAsciiStream, getBigDecimal, getBigDecimal, getBigDecimal, getBigDecimal, getBinaryStream, getBinaryStream, getBlob, getBlob, getBoolean, getBoolean, getByte, getByte, getBytes, getBytes, getCharacterStream, getCharacterStream, getClob, getClob, getConcurrency, getCursorName, getDate, getDate, getDate, getDate, getDouble, getDouble, getFetchDirection, getFetchSize, getFloat, getFloat, getHoldability, getInt, getInt, getLong, getLong, getMetaData, getNCharacterStream, getNCharacterStream, getNClob, getNClob, getNString, getNString, getObject, getObject, getObject, getObject, getObject, getObject, getRef, getRef, getRow, getRowId, getRowId, getShort, getShort, getSQLXML, getSQLXML, getStatement, getString, getString, getTime, getTime, getTime, getTime, getTimestamp, getTimestamp, getTimestamp, getTimestamp, getType, getUnicodeStream, getUnicodeStream, getURL, getURL, getWarnings, insertRow, isAfterLast, isBeforeFirst, isClosed, isFirst, isLast, last, moveToCurrentRow, moveToInsertRow, next, previous, refreshRow, relative, rowDeleted, rowInserted, rowUpdated, setFetchDirection, setFetchSize, updateArray, updateArray, updateAsciiStream, updateAsciiStream, updateAsciiStream, updateAsciiStream, updateAsciiStream, updateAsciiStream, updateBigDecimal, updateBigDecimal, updateBinaryStream, updateBinaryStream, updateBinaryStream, updateBinaryStream, updateBinaryStream, updateBinaryStream, updateBlob, updateBlob, updateBlob, updateBlob, updateBlob, updateBlob, updateBoolean, updateBoolean, updateByte, updateByte, updateBytes, updateBytes, updateCharacterStream, updateCharacterStream, updateCharacterStream, updateCharacterStream, updateCharacterStream, updateCharacterStream, updateClob, updateClob, updateClob, updateClob, updateClob, updateClob, updateDate, updateDate, updateDouble, updateDouble, updateFloat, updateFloat, updateInt, updateInt, updateLong, updateLong, updateNCharacterStream, updateNCharacterStream, updateNCharacterStream, updateNCharacterStream, updateNClob, updateNClob, updateNClob, updateNClob, updateNClob, updateNClob, updateNString, updateNString, updateNull, updateNull, updateObject, updateObject, updateObject, updateObject, updateRef, updateRef, updateRow, updateRowId, updateRowId, updateShort, updateShort, updateSQLXML, updateSQLXML, updateString, updateString, updateTime, updateTime, updateTimestamp, updateTimestamp, wasNull
-
Methods inherited from interface java.sql.Wrapper
isWrapperFor, unwrap
-
Methods inherited from interface javax.sql.rowset.Joinable
getMatchColumnIndexes, getMatchColumnNames, setMatchColumn, setMatchColumn, setMatchColumn, setMatchColumn, unsetMatchColumn, unsetMatchColumn, unsetMatchColumn, unsetMatchColumn
-
-
-
-
Method Detail
-
getShowDeleted
boolean getShowDeleted() throws SQLException
Retrieves aboolean
indicating whether rows marked for deletion appear in the set of current rows. Iftrue
is returned, deleted rows are visible with the current rows. Iffalse
is returned, rows are not visible with the set of current rows. The default value isfalse
.Standard rowset implementations may choose to restrict this behavior for security considerations or for certain deployment scenarios. The visibility of deleted rows is implementation-defined and does not represent standard behavior.
Note: Allowing deleted rows to remain visible complicates the behavior of some standard JDBC
RowSet
implementations methods. However, most rowset users can simply ignore this extra detail because only very specialized applications will likely want to take advantage of this feature.- Returns:
true
if deleted rows are visible;false
otherwise- Throws:
SQLException
- if a rowset implementation is unable to to determine whether rows marked for deletion remain visible- See Also:
setShowDeleted(boolean)
-
setShowDeleted
void setShowDeleted(boolean b) throws SQLException
Sets the propertyshowDeleted
to the givenboolean
value. This property determines whether rows marked for deletion continue to appear in the set of current rows. If the value is set totrue
, deleted rows are immediately visible with the set of current rows. If the value is set tofalse
, the deleted rows are set as invisible with the current set of rows.Standard rowset implementations may choose to restrict this behavior for security considerations or for certain deployment scenarios. This is left as implementation-defined and does not represent standard behavior.
- Parameters:
b
-true
if deleted rows should be shown;false
otherwise- Throws:
SQLException
- if a rowset implementation is unable to to reset whether deleted rows should be visible- See Also:
getShowDeleted()
-
getRowSetWarnings
RowSetWarning getRowSetWarnings() throws SQLException
Retrieves the first warning reported by calls on thisJdbcRowSet
object. If a second warning was reported on thisJdbcRowSet
object, it will be chained to the first warning and can be retrieved by calling the methodRowSetWarning.getNextWarning
on the first warning. Subsequent warnings on thisJdbcRowSet
object will be chained to theRowSetWarning
objects returned by the methodRowSetWarning.getNextWarning
. The warning chain is automatically cleared each time a new row is read. This method may not be called on aRowSet
object that has been closed; doing so will cause anSQLException
to be thrown.Because it is always connected to its data source, a
JdbcRowSet
object can rely on the presence of activeStatement
,Connection
, andResultSet
instances. This means that applications can obtain additionalSQLWarning
notifications by calling thegetNextWarning
methods that they provide. DisconnectedRowset
objects, such as aCachedRowSet
object, do not have access to thesegetNextWarning
methods.- Returns:
- the first
RowSetWarning
object reported on thisJdbcRowSet
object ornull
if there are none - Throws:
SQLException
- if this method is called on a closedJdbcRowSet
object- See Also:
RowSetWarning
-
commit
void commit() throws SQLException
EachJdbcRowSet
contains aConnection
object from theResultSet
or JDBC properties passed to it's constructors. This method wraps theConnection
commit method to allow flexible auto commit or non auto commit transactional control support.Makes all changes made since the previous commit/rollback permanent and releases any database locks currently held by this Connection object. This method should be used only when auto-commit mode has been disabled.
- Throws:
SQLException
- if a database access error occurs or this Connection object within thisJdbcRowSet
is in auto-commit mode- See Also:
Connection.setAutoCommit(boolean)
-
getAutoCommit
boolean getAutoCommit() throws SQLException
EachJdbcRowSet
contains aConnection
object from the originalResultSet
or JDBC properties passed to it. This method wraps theConnection
'sgetAutoCommit
method to allow an application to determine theJdbcRowSet
transaction behavior.Sets this connection's auto-commit mode to the given state. If a connection is in auto-commit mode, then all its SQL statements will be executed and committed as individual transactions. Otherwise, its SQL statements are grouped into transactions that are terminated by a call to either the method commit or the method rollback. By default, new connections are in auto-commit mode.
- Throws:
SQLException
- if a database access error occurs- See Also:
Connection.getAutoCommit()
-
setAutoCommit
void setAutoCommit(boolean autoCommit) throws SQLException
EachJdbcRowSet
contains aConnection
object from the originalResultSet
or JDBC properties passed to it. This method wraps theConnection
'sgetAutoCommit
method to allow an application to set theJdbcRowSet
transaction behavior.Sets the current auto-commit mode for this
Connection
object.- Throws:
SQLException
- if a database access error occurs- See Also:
Connection.setAutoCommit(boolean)
-
rollback
void rollback() throws SQLException
EachJdbcRowSet
contains aConnection
object from the originalResultSet
or JDBC properties passed to it. Undoes all changes made in the current transaction and releases any database locks currently held by thisConnection
object. This method should be used only when auto-commit mode has been disabled.- Throws:
SQLException
- if a database access error occurs or thisConnection
object within thisJdbcRowSet
is in auto-commit mode.- See Also:
rollback(Savepoint)
-
rollback
void rollback(Savepoint s) throws SQLException
EachJdbcRowSet
contains aConnection
object from the originalResultSet
or JDBC properties passed to it. Undoes all changes made in the current transaction to the last set savepoint and releases any database locks currently held by thisConnection
object. This method should be used only when auto-commit mode has been disabled.- Throws:
SQLException
- if a database access error occurs or thisConnection
object within thisJdbcRowSet
is in auto-commit mode.- See Also:
rollback()
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
22/11/2024 01:22:11 Cette version de la page est en cache (à la date du 22/11/2024 01:22:11) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 31/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/sql/rowset/JdbcRowSet.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.