AI-generated Key Takeaways
-
JdbcStruct represents a JDBC
Struct
and is documented by thejava.sql.Struct
class. -
The
getAttributes()
method returns anObject[]
containing the ordered attribute values of the structure. -
The
getSQLTypeName()
method returns aString
representing the fully-qualified SQL structured type name.
A JDBC Struct
. For documentation of this class, see java.sql.Struct
.
Methods
Method | Return type | Brief description |
---|---|---|
get | Object[] | For documentation of this method, see
java.sql.Struct#getAttributes() . |
get | String | For documentation of this method, see
java.sql.Struct#getSQLTypeName() . |
Detailed documentation
getAttributes()
For documentation of this method, see
java.sql.Struct#getAttributes()
.
Return
Object[]
— The ordered attribute values of this structure.
getSQLTypeName()
For documentation of this method, see
java.sql.Struct#getSQLTypeName()
.
Return
String
— The fully-qualified type name of the SQL structured type that this structure
represents.