1 7 8 package java.sql; 9 10 36 37 public interface Blob { 38 39 47 long length() throws SQLException ; 48 49 68 byte[] getBytes(long pos, int length) throws SQLException ; 69 70 80 java.io.InputStream getBinaryStream () throws SQLException ; 81 82 97 long position(byte pattern[], long start) throws SQLException ; 98 99 114 long position(Blob pattern, long start) throws SQLException ; 115 116 118 133 int setBytes(long pos, byte[] bytes) throws SQLException ; 134 135 156 int setBytes(long pos, byte[] bytes, int offset, int len) throws SQLException ; 157 158 172 java.io.OutputStream setBinaryStream(long pos) throws SQLException ; 173 174 184 void truncate(long len) throws SQLException ; 185 186 } 187 188 189 | Popular Tags |