Path: blob/master/src/java.sql.rowset/share/classes/com/sun/rowset/package-info.java
40948 views
/*1* Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425/**26* Provides five standard implementations of the standard JDBC {@code RowSet} implementation27* interface definitions. These reference implementations are included with the J2SE version28* 1.5 platform and represent the benchmark standard {@code RowSet} implementations as verified29* by the Test Compatibility Kit (TCK) as mandated by the Java Community Process.30* <br>31*32* <h2>1.0 Available JDBC RowSet Reference Implementations </h2>33* The following implementations are provided:<br>34*35* <blockquote><b>{@code JdbcRowSetImpl}</b> - The {@code javax.sql.rowset.JdbcRowSet}36* interface reference implementation. <br>37* <br>38* <b>{@code CachedRowSetImpl}</b> - The {@code javax.sql.rowset.CachedRowSet} interface39* reference implementation.<br>40* <br>41* <b>{@code WebRowSetImpl}</b> - The {@code javax.sql.rowset.WebRowSet} interface42* reference implementation.<br>43* <br>44* <b>{@code FilteredRowSetImpl}</b> - The {@code javax.sql.rowset.FilteredRowSet}45* interface reference implementation.<br>46* <br>47* <b>{@code JoinRowSetImpl}</b> - The {@code javax.sql.rowset.JoinRowSet} interface48* reference implementation.<br>49* </blockquote>50*51* All details on their expected behavior, including their interactions with the {@code SyncProvider}52* SPI and helper classes are provided in the interface definitions in the {@code javax.sql.rowset}53* package specification.<br>54*55* <h2>2.0 Usage</h2>56* The reference implementations represent robust implementations of the standard57* {@code RowSet} interfaces defined in the {@code javax.sql.rowset} package.58* All disconnected {@code RowSet} implementations, such as the {@code CachedRowSetImpl}59* and {@code WebRowSetImpl}, are flexible enough to use the {@code SyncFactory} SPIs to60* leverage non-reference implementation {@code SyncProvider} implementations to obtain61* differing synchronization semantics. Furthermore, developers and vendors alike are free62* to use these implementations and integrate them into their products just as they63* can with to other components of the Java platform.<br>64*65* <h2>3.0 Extending the JDBC RowSet Implementations</h2>66*67* The JDBC {@code RowSet} reference implementations are provided as non-final68* classes so that any developer can extend them to provide additional features69* while maintaining the core required standard functionality and compatibility. It70* is anticipated that many vendors and developers will extend the standard feature71* set to their their particular needs. The website for JDBC Technology will72* provider a portal where implementations can be listed, similar to the way it73* provides a site for JDBC drivers.74*/75package com.sun.rowset;767778