home *** CD-ROM | disk | FTP | other *** search
- package java.sql;
-
- import java.io.InputStream;
- import java.io.Reader;
-
- public interface Clob {
- long length() throws SQLException;
-
- String getSubString(long var1, int var3) throws SQLException;
-
- Reader getCharacterStream() throws SQLException;
-
- InputStream getAsciiStream() throws SQLException;
-
- long position(String var1, long var2) throws SQLException;
-
- long position(Clob var1, long var2) throws SQLException;
- }
-