| Package | Description |
|---|---|
| java.sql |
Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java
TM programming language.
|
| javax.sql |
Provides the API for server side data source access and processing from the Java
TM programming language.
|
| javax.sql.rowset |
Standard interfaces and base classes for JDBC
RowSet implementations.
|
| javax.sql.rowset.serial |
Provides utility classes to allow serializable mappings between SQL types and data types in the Java programming language.
|
| Modifier and Type | Method and Description |
|---|---|
SQLXML |
Connection.createSQLXML()
Constructs an object that implements the
SQLXML interface.
|
SQLXML |
ResultSet.getSQLXML(int columnIndex)
Retrieves the value of the designated column in the current row of this
ResultSet as a
java.sql.SQLXML object in the Java programming language.
|
SQLXML |
CallableStatement.getSQLXML(int parameterIndex)
Retrieves the value of the designated
SQL XML parameter as a
java.sql.SQLXML object in the Java programming language.
|
SQLXML |
ResultSet.getSQLXML(String
Retrieves the value of the designated column in the current row of this
ResultSet as a
java.sql.SQLXML object in the Java programming language.
|
SQLXML |
CallableStatement.getSQLXML(String
Retrieves the value of the designated
SQL XML parameter as a
java.sql.SQLXML object in the Java programming language.
|
SQLXML |
SQLInput.readSQLXML()
Reads an SQL
XML value from the stream and returns it as a
SQLXML object in the Java programming language.
|
| Modifier and Type | Method and Description |
|---|---|
void |
PreparedStatement.setSQLXML(int parameterIndex, SQLXML
Sets the designated parameter to the given
java.sql.SQLXML object.
|
void |
CallableStatement.setSQLXML(String
Sets the designated parameter to the given
java.sql.SQLXML object.
|
void |
ResultSet.updateSQLXML(int columnIndex, SQLXML
Updates the designated column with a
java.sql.SQLXML value.
|
void |
ResultSet.updateSQLXML(String
Updates the designated column with a
java.sql.SQLXML value.
|
void |
SQLOutput.writeSQLXML(SQLXML
Writes an SQL
XML value to the stream.
|
| Modifier and Type | Method and Description |
|---|---|
void |
RowSet.setSQLXML(int parameterIndex, SQLXML
Sets the designated parameter to the given
java.sql.SQLXML object.
|
void |
RowSet.setSQLXML(String
Sets the designated parameter to the given
java.sql.SQLXML object.
|
| Modifier and Type | Method and Description |
|---|---|
void |
BaseRowSet.setSQLXML(int parameterIndex, SQLXML
Sets the designated parameter to the given
java.sql.SQLXML object.
|
void |
BaseRowSet.setSQLXML(String
Sets the designated parameter to the given
java.sql.SQLXML object.
|
| Modifier and Type | Method and Description |
|---|---|
SQLXML |
SQLInputImpl.readSQLXML()
Reads an SQL
XML value from the stream and returns it as a
SQLXML object in the Java programming language.
|
| Modifier and Type | Method and Description |
|---|---|
void |
SQLOutputImpl.writeSQLXML(SQLXML
Writes an SQL
XML value to the stream.
|