home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / sql / Clob.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  411 b   |  19 lines

  1. package java.sql;
  2.  
  3. import java.io.InputStream;
  4. import java.io.Reader;
  5.  
  6. public interface Clob {
  7.    long length() throws SQLException;
  8.  
  9.    String getSubString(long var1, int var3) throws SQLException;
  10.  
  11.    Reader getCharacterStream() throws SQLException;
  12.  
  13.    InputStream getAsciiStream() throws SQLException;
  14.  
  15.    long position(String var1, long var2) throws SQLException;
  16.  
  17.    long position(Clob var1, long var2) throws SQLException;
  18. }
  19.