-
Methods in java.sql that return SQLXML
| Modifier and Type |
Method |
Description |
SQLXML |
Connection.createSQLXML() |
Returns a new empty SQLXML.
|
SQLXML |
CallableStatement.getSQLXML(int parameterIndex) |
Returns the value of the specified SQL XML parameter as a
java.sql.SQLXML.
|
SQLXML |
CallableStatement.getSQLXML(String parameterName) |
Returns the value of the specified SQL XML parameter as a
java.sql.SQLXML.
|
SQLXML |
ResultSet.getSQLXML(int columnIndex) |
Returns an SQLXML corresponding to the value at the 1-based columnIndex.
|
SQLXML |
ResultSet.getSQLXML(String columnLabel) |
Returns an SQLXML corresponding to the value in the named column.
|
SQLXML |
SQLInput.readSQLXML() |
Returns the next attribute in the stream in the form of a
java.sql.SQLXML.
|
Methods in java.sql with parameters of type SQLXML
| Modifier and Type |
Method |
Description |
void |
CallableStatement.setSQLXML(String parameterName,
SQLXML sqlXml) |
Sets the named parameter to the given sqlXml.
|
void |
PreparedStatement.setSQLXML(int parameterIndex,
SQLXML xmlObject) |
Sets the value of the specified parameter to the value of xmlObject.
|
void |
ResultSet.updateSQLXML(int columnIndex,
SQLXML xmlObject) |
Updates the value at the 1-based columnIndex.
|
void |
ResultSet.updateSQLXML(String columnLabel,
SQLXML xmlObject) |
Updates the value in the named column.
|
void |
SQLOutput.writeSQLXML(SQLXML theXml) |
Write a SQLXML into the output stream as an SQL XML.
|
-
Methods in javax.sql with parameters of type SQLXML
| Modifier and Type |
Method |
Description |
void |
RowSet.setSQLXML(int parameterIndex,
SQLXML theSQLXML) |
Sets the value of the specified parameter in the RowSet command to the
supplied SQLXML
|
void |
RowSet.setSQLXML(String parameterName,
SQLXML theSQLXML) |
Sets the value of the specified parameter in the RowSet command to the
supplied SQLXML.
|
-