AI-generated Key Takeaways
-
JdbcSQLXML
is a JDBC wrapper for SQLXML data type, providing methods for interaction with XML data within a database. -
This class offers functionalities like retrieving the XML data as a string using
getString()
, setting it withsetString(value)
, and releasing resources withfree()
. -
Detailed documentation and usage examples for each method are linked to the official Java API documentation for comprehensive understanding.
A JDBC SQLXML
. For documentation of this class, see java.sql.SQLXML
.
Methods
Method | Return type | Brief description |
---|---|---|
free() | void | For documentation of this method, see
java.sql.SQLXML#free() . |
get | String | For documentation of this method, see
java.sql.SQLXML#getString() . |
set | void | For documentation of this method, see
java.sql.SQLXML#setString(String) . |
Detailed documentation
free()
For documentation of this method, see
java.sql.SQLXML#free()
.
getString()
For documentation of this method, see
java.sql.SQLXML#getString()
.
Return
String
— The string representation of the XML value designated by this SQLXML instance.
setString(value)
For documentation of this method, see
java.sql.SQLXML#setString(String)
.
Parameters
Name | Type | Description |
---|---|---|
value | String | The string representation of the XML value to set. |