author | coleenp |
Wed, 28 Jun 2017 19:12:58 -0400 | |
changeset 46589 | f1c04490ded1 |
parent 32210 | 958d823579c3 |
permissions | -rw-r--r-- |
2 | 1 |
<!-- |
23010
6dadb192ad81
8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents:
21278
diff
changeset
|
2 |
Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
||
5 |
This code is free software; you can redistribute it and/or modify it |
|
6 |
under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
published by the Free Software Foundation. Oracle designates this |
2 | 8 |
particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
|
11 |
This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
accompanied this code). |
|
16 |
||
17 |
You should have received a copy of the GNU General Public License version |
|
18 |
2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
||
5506 | 21 |
Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
or visit www.oracle.com if you need additional information or have any |
|
23 |
questions. |
|
2 | 24 |
--> |
25 |
||
26 |
<!DOCTYPE doctype PUBLIC "-//w3c//dtd html 4.0 transitional//en"> |
|
27 |
<html> |
|
28 |
<head> |
|
32210
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
29 |
|
2 | 30 |
<meta http-equiv="Content-Type" |
31 |
content="text/html; charset=iso-8859-1"> |
|
32 |
<title>com.sun.rowset Package</title> |
|
33 |
</head> |
|
34 |
<body bgcolor="#ffffff"> |
|
32210
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
35 |
Provides five standard implementations of the standard JDBC <code>RowSet</code> implementation |
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
36 |
interface definitions. These reference implementations are included with the J2SE version |
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
37 |
1.5 platform and represent the benchmark standard <code>RowSet</code> implementations as verified |
2 | 38 |
by the Test Compatibility Kit (TCK) as mandated by the Java Community Process. |
32210
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
39 |
<br> |
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
40 |
|
2 | 41 |
<h3>1.0 Available JDBC RowSet Reference Implementations </h3> |
32210
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
42 |
The following implementations are provided:<br> |
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
43 |
|
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
44 |
<blockquote><code><b>JdbcRowSetImpl</b></code> - The <code>javax.sql.rowset.JdbcRowSet</code> |
2 | 45 |
interface reference implementation. <br> |
46 |
<br> |
|
32210
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
47 |
<code><b>CachedRowSetImpl</b></code> - The <code>javax.sql.rowset.CachedRowSet</code> interface |
2 | 48 |
reference implementation.<br> |
49 |
<br> |
|
32210
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
50 |
<code><b>WebRowSetImpl</b></code> - The <code>javax.sql.rowset.WebRowSet</code> interface |
2 | 51 |
reference implementation.<br> |
52 |
<br> |
|
32210
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
53 |
<code><b>FilteredRowSetImpl</b></code> - The <code>javax.sql.rowset.FilteredRowSet</code> |
2 | 54 |
interface reference implementation.<br> |
55 |
<br> |
|
32210
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
56 |
<code><b>JoinRowSetImpl</b></code> - The <code>javax.sql.rowset.JoinRowSet</code> interface |
2 | 57 |
reference implementation.<br> |
58 |
</blockquote> |
|
59 |
||
32210
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
60 |
All details on their expected behavior, including their interactions with the <code>SyncProvider</code> |
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
61 |
SPI and helper classes are provided in the interface definitions in the <code>javax.sql.rowset</code> |
2 | 62 |
package specification.<br> |
32210
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
63 |
|
2 | 64 |
<h3>2.0 Usage</h3> |
65 |
The reference implementations represent robust implementations of the standard |
|
32210
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
66 |
<code>RowSet</code> interfaces defined in the <code>javax.sql.rowset</code> package. |
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
67 |
All disconnected <code>RowSet</code> implementations, such as the <code>CachedRowSetImpl</code> |
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
68 |
and <code>WebRowSetImpl</code>, are flexible enough to use the <code>SyncFactory</code> SPIs to |
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
69 |
leverage non-reference implementation <code>SyncProvider</code> implementations to obtain |
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
70 |
differing synchronization semantics. Furthermore, developers and vendors alike are free |
2 | 71 |
to use these implementations and integrate them into their products just as they |
72 |
can with to other components of the Java platform.<br> |
|
32210
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
73 |
|
2 | 74 |
<h3>3.0 Extending the JDBC RowSet Implementations</h3> |
75 |
||
76 |
The JDBC <code>RowSet</code> reference implementations are provided as non-final |
|
21278 | 77 |
classes so that any developer can extend them to provide additional features |
2 | 78 |
while maintaining the core required standard functionality and compatibility. It |
79 |
is anticipated that many vendors and developers will extend the standard feature |
|
80 |
set to their their particular needs. The website for JDBC Technology will |
|
81 |
provider a portal where implementations can be listed, similar to the way it |
|
82 |
provides a site for JDBC drivers. |
|
83 |
<br> |
|
32210
958d823579c3
8133480: replace some <tt> tags (obsolete in html5) in core-libs docs
avstepan
parents:
25859
diff
changeset
|
84 |
<br> |
2 | 85 |
</body> |
86 |
</html> |