AI-generated Key Takeaways
-
JdbcStruct is a JDBC representation of an SQL structured type.
-
It provides methods to access the attributes (
getAttributes()
) and the SQL type name (getSQLTypeName()
). -
For detailed documentation on the methods and class, refer to the provided Oracle Java SE 6 API links.
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.