< prev index next >

src/java.sql.rowset/share/classes/javax/sql/rowset/BaseRowSet.java

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

*** 35,45 **** import javax.sql.rowset.serial.*; /** * An abstract class providing a <code>RowSet</code> object with its basic functionality. * The basic functions include having properties and sending event notifications, ! * which all JavaBeans&trade; components must implement. * * <h2>1.0 Overview</h2> * The <code>BaseRowSet</code> class provides the core functionality * for all <code>RowSet</code> implementations, * and all standard implementations <b>may</b> use this class in combination with --- 35,45 ---- import javax.sql.rowset.serial.*; /** * An abstract class providing a <code>RowSet</code> object with its basic functionality. * The basic functions include having properties and sending event notifications, ! * which all JavaBeans components must implement. * * <h2>1.0 Overview</h2> * The <code>BaseRowSet</code> class provides the core functionality * for all <code>RowSet</code> implementations, * and all standard implementations <b>may</b> use this class in combination with
*** 90,100 **** * the user name and password. * <P> * NOTE: In order to use a <code>DataSource</code> object for making a * connection, the <code>DataSource</code> object must have been registered * with a naming service that uses the Java Naming and Directory ! * Interface&trade; (JNDI) API. This registration * is usually done by a person acting in the capacity of a system administrator. * * <h2>3.0 Setting the Command and Its Parameters</h2> * When a rowset gets its data from a relational database, it executes a command (a query) * that produces a <code>ResultSet</code> object. This query is the command that is set --- 90,100 ---- * the user name and password. * <P> * NOTE: In order to use a <code>DataSource</code> object for making a * connection, the <code>DataSource</code> object must have been registered * with a naming service that uses the Java Naming and Directory ! * Interface (JNDI) API. This registration * is usually done by a person acting in the capacity of a system administrator. * * <h2>3.0 Setting the Command and Its Parameters</h2> * When a rowset gets its data from a relational database, it executes a command (a query) * that produces a <code>ResultSet</code> object. This query is the command that is set
*** 103,113 **** * contains placeholders for values to be set, the <code>BaseRowSet</code> setter methods * are used to set these values. All setter methods allow these values to be set * to <code>null</code> if required. * <P> * The following code fragment illustrates how the ! * <code>CachedRowSet</code>&trade; * object <code>crs</code> might have its command property set. Note that if a * tool is used to set properties, this is the code that the tool would use. * <PRE>{@code * crs.setCommand("SELECT FIRST_NAME, LAST_NAME, ADDRESS FROM CUSTOMERS" + * "WHERE CREDIT_LIMIT > ? AND REGION = ?"); --- 103,113 ---- * contains placeholders for values to be set, the <code>BaseRowSet</code> setter methods * are used to set these values. All setter methods allow these values to be set * to <code>null</code> if required. * <P> * The following code fragment illustrates how the ! * <code>CachedRowSet</code> * object <code>crs</code> might have its command property set. Note that if a * tool is used to set properties, this is the code that the tool would use. * <PRE>{@code * crs.setCommand("SELECT FIRST_NAME, LAST_NAME, ADDRESS FROM CUSTOMERS" + * "WHERE CREDIT_LIMIT > ? AND REGION = ?");
< prev index next >