1 2 9 10 package org.objectweb.rmijdbc; 11 12 import java.sql.*; 13 import java.rmi.RemoteException ; 14 15 public interface RJClobInterface extends java.rmi.Remote { 16 17 byte[] getAsciiStream() throws RemoteException , SQLException; 19 20 char[] getCharacterStream() throws RemoteException , SQLException; 22 23 long length() throws RemoteException , SQLException; 24 25 String getSubString(long pos, int length) 26 throws RemoteException , SQLException; 27 28 long position(String searchstr, long start) 29 throws RemoteException , SQLException; 30 31 long position(Clob searchstr, long start) 32 throws RemoteException , SQLException; 33 34 int setString(long pos, String str) 36 throws RemoteException , SQLException; 37 38 int setString(long pos, String str, int offset, int len) 39 throws RemoteException , SQLException; 40 41 java.io.OutputStream setAsciiStream(long pos) 42 throws RemoteException , SQLException; 43 44 java.io.Writer setCharacterStream(long pos) 45 throws RemoteException , SQLException; 46 47 void truncate(long len) 48 throws RemoteException , SQLException; 49 }; 50 51 | Popular Tags |