home *** CD-ROM | disk | FTP | other *** search
- package java.sql;
-
- import java.io.InputStream;
-
- public interface Blob {
- long length() throws SQLException;
-
- byte[] getBytes(long var1, int var3) throws SQLException;
-
- InputStream getBinaryStream() throws SQLException;
-
- long position(byte[] var1, long var2) throws SQLException;
-
- long position(Blob var1, long var2) throws SQLException;
- }
-