public interface SQLData
Modifier and Type | Method and Description |
---|---|
String |
getSQLTypeName()
This method returns the user defined datatype name for this object.
|
void |
readSQL(SQLInput stream,
String typeName)
This method populates the data in the object from the specified stream.
|
void |
writeSQL(SQLOutput stream)
This method writes the data in this object to the specified stream.
|
String getSQLTypeName() throws SQLException
SQLException
- If an error occurs.void readSQL(SQLInput stream, String typeName) throws SQLException
stream
- The stream to read the data from.typeName
- The data type name of the data on the stream.SQLException
- If an error occurs.void writeSQL(SQLOutput stream) throws SQLException
stream
- The stream to write the data to.SQLException
- If an error occurs.