< prev index next >

src/java.sql/share/classes/javax/sql/RowSet.java

Print this page
rev 60127 : 8249205: Remove unnecessary trademark symbols


  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  *
  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.
  24  */
  25 
  26 package javax.sql;
  27 
  28 import java.sql.*;
  29 import java.io.*;
  30 import java.math.*;
  31 import java.util.*;
  32 
  33 /**
  34  * The interface that adds support to the JDBC API for the
  35  * JavaBeans&trade; component model.
  36  * A rowset, which can be used as a JavaBeans component in
  37  * a visual Bean development environment, can be created and
  38  * configured at design time and executed at run time.
  39  * <P>
  40  * The <code>RowSet</code>
  41  * interface provides a set of JavaBeans properties that allow a <code>RowSet</code>
  42  * instance to be configured to connect to a JDBC data source and read
  43  * some data from the data source.  A group of setter methods (<code>setInt</code>,
  44  * <code>setBytes</code>, <code>setString</code>, and so on)
  45  * provide a way to pass input parameters to a rowset's command property.
  46  * This command is the SQL query the rowset uses when it gets its data from
  47  * a relational database, which is generally the case.
  48  * <P>
  49  * The <code>RowSet</code>
  50  * interface supports JavaBeans events, allowing other components in an
  51  * application to be notified when an event occurs on a rowset,
  52  * such as a change in its value.
  53  *
  54  * <P>The <code>RowSet</code> interface is unique in that it is intended to be
  55  * implemented using the rest of the JDBC API.  In other words, a




  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  *
  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.
  24  */
  25 
  26 package javax.sql;
  27 
  28 import java.sql.*;
  29 import java.io.*;
  30 import java.math.*;
  31 import java.util.*;
  32 
  33 /**
  34  * The interface that adds support to the JDBC API for the
  35  * JavaBeans component model.
  36  * A rowset, which can be used as a JavaBeans component in
  37  * a visual Bean development environment, can be created and
  38  * configured at design time and executed at run time.
  39  * <P>
  40  * The <code>RowSet</code>
  41  * interface provides a set of JavaBeans properties that allow a <code>RowSet</code>
  42  * instance to be configured to connect to a JDBC data source and read
  43  * some data from the data source.  A group of setter methods (<code>setInt</code>,
  44  * <code>setBytes</code>, <code>setString</code>, and so on)
  45  * provide a way to pass input parameters to a rowset's command property.
  46  * This command is the SQL query the rowset uses when it gets its data from
  47  * a relational database, which is generally the case.
  48  * <P>
  49  * The <code>RowSet</code>
  50  * interface supports JavaBeans events, allowing other components in an
  51  * application to be notified when an event occurs on a rowset,
  52  * such as a change in its value.
  53  *
  54  * <P>The <code>RowSet</code> interface is unique in that it is intended to be
  55  * implemented using the rest of the JDBC API.  In other words, a


< prev index next >