< prev index next >

src/java.sql/share/classes/javax/sql/package-info.java

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

*** 23,38 **** * questions. */ /** * Provides the API for server side data source access and processing from ! * the Java&trade; programming language. * This package supplements the {@code java.sql} * package and, as of the version 1.4 release, is included in the ! * Java Platform, Standard Edition (Java SE&trade;). * It remains an essential part of the Java Platform, Enterprise Edition ! * (Java EE&trade;). * <p> * The {@code javax.sql} package provides for the following: * <OL> * <LI>The {@code DataSource} interface as an alternative to the * {@code DriverManager} for establishing a --- 23,38 ---- * questions. */ /** * Provides the API for server side data source access and processing from ! * the Java programming language. * This package supplements the {@code java.sql} * package and, as of the version 1.4 release, is included in the ! * Java Platform, Standard Edition (Java SE). * It remains an essential part of the Java Platform, Enterprise Edition ! * (Java EE). * <p> * The {@code javax.sql} package provides for the following: * <OL> * <LI>The {@code DataSource} interface as an alternative to the * {@code DriverManager} for establishing a
*** 74,84 **** * particular {@code DataSource} object represents a particular * physical data source, and each connection the {@code DataSource} object * creates is a connection to that physical data source. * <p> * A logical name for the data source is registered with a naming service that ! * uses the Java Naming and Directory Interface&trade; * (JNDI) API, usually by a system administrator or someone performing the * duties of a system administrator. An application can retrieve the * {@code DataSource} object it wants by doing a lookup on the logical * name that has been registered for it. The application can then use the * {@code DataSource} object to create a connection to the physical data --- 74,84 ---- * particular {@code DataSource} object represents a particular * physical data source, and each connection the {@code DataSource} object * creates is a connection to that physical data source. * <p> * A logical name for the data source is registered with a naming service that ! * uses the Java Naming and Directory Interface * (JNDI) API, usually by a system administrator or someone performing the * duties of a system administrator. An application can retrieve the * {@code DataSource} object it wants by doing a lookup on the logical * name that has been registered for it. The application can then use the * {@code DataSource} object to create a connection to the physical data
*** 179,189 **** * interfaces behind the scenes. These can be grouped into three categories. * <OL> * <LI>Event Notification * <UL> * <LI>{@code RowSetListener}<br> ! * A {@code RowSet} object is a JavaBeans&trade; * component because it has properties and participates in the JavaBeans * event notification mechanism. The {@code RowSetListener} interface * is implemented by a component that wants to be notified about events that * occur to a particular {@code RowSet} object. Such a component registers * itself as a listener with a rowset via the {@code RowSet.addRowSetListener} --- 179,189 ---- * interfaces behind the scenes. These can be grouped into three categories. * <OL> * <LI>Event Notification * <UL> * <LI>{@code RowSetListener}<br> ! * A {@code RowSet} object is a JavaBeans * component because it has properties and participates in the JavaBeans * event notification mechanism. The {@code RowSetListener} interface * is implemented by a component that wants to be notified about events that * occur to a particular {@code RowSet} object. Such a component registers * itself as a listener with a rowset via the {@code RowSet.addRowSetListener}
< prev index next >