Name

SQLData

Synopsis

Allows custom mapping of user-defined SQL types. This interface is generally implemented by a development tool or driver vendor and is never called by the programmer directly.

public interface SQLData {
// Public Instance Methods
   public abstract String getSQLTypeName(
        ) throws SQLException;  
   public abstract void readSQL(SQLInput stream, 
        String typeName) throws SQLException;  
   public abstract void writeSQL(
        SQLOutput stream) throws SQLException;  
}

Passed To

SQLOutput.writeObject()

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.