String : nom de type complet du type structuré SQL que cette structure représente.
Sauf indication contraire, le contenu de cette page est régi par une licence Creative Commons Attribution 4.0, et les échantillons de code sont régis par une licence Apache 2.0. Pour en savoir plus, consultez les Règles du site Google Developers. Java est une marque déposée d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/07/26 (UTC).
[[["Facile à comprendre","easyToUnderstand","thumb-up"],["J'ai pu résoudre mon problème","solvedMyProblem","thumb-up"],["Autre","otherUp","thumb-up"]],[["Il n'y a pas l'information dont j'ai besoin","missingTheInformationINeed","thumb-down"],["Trop compliqué/Trop d'étapes","tooComplicatedTooManySteps","thumb-down"],["Obsolète","outOfDate","thumb-down"],["Problème de traduction","translationIssue","thumb-down"],["Mauvais exemple/Erreur de code","samplesCodeIssue","thumb-down"],["Autre","otherDown","thumb-down"]],["Dernière mise à jour le 2025/07/26 (UTC)."],[[["\u003cp\u003eJdbcStruct is a JDBC representation of an SQL structured type.\u003c/p\u003e\n"],["\u003cp\u003eIt provides methods to access the attributes (\u003ccode\u003egetAttributes()\u003c/code\u003e) and the SQL type name (\u003ccode\u003egetSQLTypeName()\u003c/code\u003e).\u003c/p\u003e\n"],["\u003cp\u003eFor detailed documentation on the methods and class, refer to the provided Oracle Java SE 6 API links.\u003c/p\u003e\n"]]],["JdbcStruct, a JDBC `Struct`, provides methods to interact with SQL structured types. `getAttributes()` retrieves the ordered attribute values of a structure as an `Object` array. `getSQLTypeName()` returns the fully-qualified type name of the SQL structured type represented by the structure, as a `String`. Both methods' detailed documentation is found in the `java.sql.Struct` Java documentation. These are the two methods to use to interact with this JDBC class.\n"],null,["JdbcStruct\n\nA JDBC `Struct`. For documentation of this class, see [`java.sql.Struct\n`](https://docs.oracle.com/javase/6/docs/api/java/sql/Struct.html). \n\nMethods\n\n| Method | Return type | Brief description |\n|---------------------------------------|-------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [getAttributes()](#getAttributes()) | `Object[]` | For documentation of this method, see [` java.sql.Struct#getAttributes()`](https://docs.oracle.com/javase/6/docs/api/java/sql/Struct.html#getAttributes()). |\n| [getSQLTypeName()](#getSQLTypeName()) | `String` | For documentation of this method, see [` java.sql.Struct#getSQLTypeName()`](https://docs.oracle.com/javase/6/docs/api/java/sql/Struct.html#getSQLTypeName()). |\n\nDetailed documentation \n\n`get``Attributes()` \nFor documentation of this method, see [`\njava.sql.Struct#getAttributes()`](https://docs.oracle.com/javase/6/docs/api/java/sql/Struct.html#getAttributes()).\n\nReturn\n\n\n`Object[]` --- The ordered attribute values of this structure.\n\n*** ** * ** ***\n\n`get``SQLType``Name()` \nFor documentation of this method, see [`\njava.sql.Struct#getSQLTypeName()`](https://docs.oracle.com/javase/6/docs/api/java/sql/Struct.html#getSQLTypeName()).\n\nReturn\n\n\n`String` --- The fully-qualified type name of the SQL structured type that this structure\nrepresents."]]