[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 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. |"]]