[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Benötigte Informationen nicht gefunden","missingTheInformationINeed","thumb-down"],["Zu umständlich/zu viele Schritte","tooComplicatedTooManySteps","thumb-down"],["Nicht mehr aktuell","outOfDate","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Problem mit Beispielen/Code","samplesCodeIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["Zuletzt aktualisiert: 2025-07-26 (UTC)."],[[["\u003cp\u003e\u003ccode\u003eJdbcSQLXML\u003c/code\u003e is a JDBC wrapper for SQLXML data type, providing methods for interaction with XML data within a database.\u003c/p\u003e\n"],["\u003cp\u003eThis class offers functionalities like retrieving the XML data as a string using \u003ccode\u003egetString()\u003c/code\u003e, setting it with \u003ccode\u003esetString(value)\u003c/code\u003e, and releasing resources with \u003ccode\u003efree()\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eDetailed documentation and usage examples for each method are linked to the official Java API documentation for comprehensive understanding.\u003c/p\u003e\n"]]],["JdbcSQLXML is a JDBC `SQLXML` class with methods for managing XML data. The `free()` method is used to release resources. The `getString()` method retrieves the XML data as a string. The `setString(value)` method sets the XML value using a provided string; it accepts a `String` parameter named `value`. Detailed information about these methods can be found in the `java.sql.SQLXML` documentation.\n"],null,["JdbcSQLXML\n\nA JDBC `SQLXML`. For documentation of this class, see [`java.sql.SQLXML\n`](https://docs.oracle.com/javase/6/docs/api/java/sql/SQLXML.html). \n\nMethods\n\n| Method | Return type | Brief description |\n|----------------------------------------|-------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [free()](#free()) | `void` | For documentation of this method, see [` java.sql.SQLXML#free()`](https://docs.oracle.com/javase/6/docs/api/java/sql/SQLXML.html#free()). |\n| [getString()](#getString()) | `String` | For documentation of this method, see [` java.sql.SQLXML#getString()`](https://docs.oracle.com/javase/6/docs/api/java/sql/SQLXML.html#getString()). |\n| [setString(value)](#setString(String)) | `void` | For documentation of this method, see [`java.sql.SQLXML#setString(String)`](https://docs.oracle.com/javase/6/docs/api/java/sql/SQLXML.html#setString(java.lang.String)). |\n\nDetailed documentation \n\n`free()` \nFor documentation of this method, see [`\njava.sql.SQLXML#free()`](https://docs.oracle.com/javase/6/docs/api/java/sql/SQLXML.html#free()).\n\n*** ** * ** ***\n\n`get``String()` \nFor documentation of this method, see [`\njava.sql.SQLXML#getString()`](https://docs.oracle.com/javase/6/docs/api/java/sql/SQLXML.html#getString()).\n\nReturn\n\n\n`String` --- The string representation of the XML value designated by this SQLXML instance.\n\n*** ** * ** ***\n\n`set``String(value)` \nFor documentation of this method, see [`java.sql.SQLXML#setString(String)`](https://docs.oracle.com/javase/6/docs/api/java/sql/SQLXML.html#setString(java.lang.String)).\n\nParameters\n\n| Name | Type | Description |\n|---------|----------|----------------------------------------------------|\n| `value` | `String` | The string representation of the XML value to set. |"]]