1 7 8 package java.sql; 9 10 34 35 public interface Clob { 36 37 47 long length() throws SQLException ; 48 49 66 String getSubString(long pos, int length) throws SQLException ; 67 68 80 java.io.Reader getCharacterStream() throws SQLException ; 81 82 93 java.io.InputStream getAsciiStream() throws SQLException ; 94 95 110 long position(String searchstr, long start) throws SQLException ; 111 112 127 long position(Clob searchstr, long start) throws SQLException ; 128 129 131 146 int setString(long pos, String str) throws SQLException ; 147 148 166 int setString(long pos, String str, int offset, int len) throws SQLException ; 167 168 182 java.io.OutputStream setAsciiStream(long pos) throws SQLException ; 183 184 199 java.io.Writer setCharacterStream(long pos) throws SQLException ; 200 201 212 void truncate(long len) throws SQLException ; 213 214 } 215 216 | Popular Tags |