Searched refs:CachedRowSet (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DRowSetFactory.java40 * <p>Creates a new instance of a CachedRowSet.</p>
42 * @return A new instance of a CachedRowSet.
44 * @throws SQLException if a CachedRowSet cannot
49 public CachedRowSet createCachedRowSet() throws SQLException;
H A DCachedRowSet.java39 * <code>CachedRowSet</code> must implement.
41 * The reference implementation of the <code>CachedRowSet</code> interface provided
46 * A <code>CachedRowSet</code> object is a container for rows of data
50 * updatable, and serializable. A <code>CachedRowSet</code> object typically
57 * An application can modify the data in a <code>CachedRowSet</code> object, and
60 * A <code>CachedRowSet</code> object is a <i>disconnected</i> rowset, which means
64 * of the time, a <code>CachedRowSet</code> object is disconnected, including
71 * <h3>1.0 Creating a <code>CachedRowSet</code> Object</h3>
73 * <code>CachedRowSet</code>
75 * <code>CachedRowSet</cod
631 public interface CachedRowSet extends RowSet, Joinable { interface in inherits:RowSet,Joinable
[all...]
H A DJoinRowSet.java53 * Disconnected <code>RowSet</code> objects (<code>CachedRowSet</code> objects
54 * and implementations extending the <code>CachedRowSet</code> interface)
132 * The following code fragment adds two <code>CachedRowSet</code>
147 * object. In this example, both <code>CachedRowSet</code> objects being added
154 * CachedRowSet empl = new CachedRowSetImpl();
160 * CachedRowSet bonus = new CachedRowSetImpl();
182 * The following code fragment adds an additional <code>CachedRowSet</code> object.
184 * <code>CachedRowSet</code> object is added to the <code>JoinRowSet</code> object.
187 * CachedRowSet fourO1k = new CachedRowSetImpl();
384 * @see CachedRowSet#setTableNam
[all...]
H A DWebRowSet.java93 * the <code>CachedRowSet</code><sup><font size=-2>TM</font></sup> interface
402 * @see javax.sql.rowset.CachedRowSet
407 public interface WebRowSet extends CachedRowSet {
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DRowSetFactoryImpl.java29 import javax.sql.rowset.CachedRowSet;
48 public CachedRowSet createCachedRowSet() throws SQLException {
H A DJoinRowSetImpl.java52 * largely <code>CachedRowSet</code> objects and implementations derived from
53 * the <code>CachedRowSet</code> interface that will use the <code>JoinRowSetImpl</code>
66 * The <code>CachedRowSet</code> object that encapsulates this
156 * @see CachedRowSet#setMatchColumn
278 * @see CachedRowSet#unsetMatchColumn
426 * @see CachedRowSet#setTableName
440 * Creates a separate <code>CachedRowSet</code> object that contains the data
444 * object, the <code>CachedRowSet</code> object returned by this method will
448 * <code>CachedRowSet</code> instance returned should not
450 * original values are. Also, the <code>CachedRowSet</cod
[all...]
H A DCachedRowSetImpl.java42 * The standard implementation of the <code>CachedRowSet</code> interface.
52 public class CachedRowSetImpl extends BaseRowSet implements RowSet, RowSetInternal, Serializable, Cloneable, CachedRowSet {
55 * The <code>SyncProvider</code> used by the CachedRowSet
222 * up of rows for populating a CachedRowSet object was left off.
228 * up of rows for populating a CachedRowSet object was left off.
234 * CachedRowSet object.
288 * CachedRowSet reader object to read the data from the ResultSet when a connection
289 * parameter is passed to populate the CachedRowSet object for paging.
422 * CachedRowSetImpl crs = new CachedRowSet(env);
782 * <code>CachedRowSet</cod
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DCachedRowSetReader.java113 * executes the query in the calling <code>CachedRowSet</code> object's
134 CachedRowSet crs = (CachedRowSet)caller;
471 * CachedRowSet to ensure incorrect connections are not prematurely terminated.
H A DSyncResolverImpl.java47 * This CachedRowSet object will encapsulate a rowset
58 * This is the actual CachedRowSet object
72 * CachedRowSet object which is being synchronized.
82 * This will contain the size of the <code>CachedRowSet</code> object
89 * to the CachedRowSet while fetching the data.
94 * The <code>CachedRowSet</code> object which will encapsulate
95 * a row at any time. This will be built from CachedRowSet and
99 private CachedRowSet row;
208 * If we allow a value other than that in CachedRowSet or
291 * This passes a CachedRowSet a
[all...]
H A DCachedRowSetWriter.java135 * needed to uniquely identify a row in the <code>CachedRowSet</code> object
153 * set as the reader for the <code>CachedRowSet</code> object
162 * about the columns in the <code>CachedRowSet</code> object
170 * The number of columns in the <code>CachedRowSet</code> object
178 * This <code>CachedRowSet<code> will hold the conflicting values
190 * in database and CachedRowSet.
230 * <LI>Creates a <code>CachedRowSet</code> object from the given
243 * <LI>Uses the <code>CachedRowSet</code> object's metadata to
248 * <code>CachedRowSet</code> object back to its underlying data source
250 * <LI>Iterates through each row of the <code>CachedRowSet</cod
[all...]

Completed in 41 milliseconds