KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > rmi > interfaces > _RmiClob


1 package com.daffodilwoods.rmi.interfaces;
2
3  import java.rmi.*;
4  import java.sql.*;
5 public interface _RmiClob extends Remote{
6     long length() throws SQLException , RemoteException ;
7     String JavaDoc getSubString(long pos, int length) throws SQLException , RemoteException ;
8
9     _RmiReader getCharacterStream() throws SQLException , RemoteException ;
10
11     _RmiInputStream getAsciiStream() throws SQLException , RemoteException ;
12
13     long position(String JavaDoc searchstr, long start) throws SQLException , RemoteException ;
14
15     long position(Clob searchstr, long start) throws SQLException , RemoteException ;
16
17     int setString(long pos, String JavaDoc str, int offset, int len) throws SQLException , RemoteException ;
18
19     _RmiOutputStream setAsciiStream(long pos) throws SQLException , RemoteException ;
20
21     _RmiWriter setCharacterStream(long pos) throws SQLException , RemoteException ;
22
23     void truncate(long len) throws SQLException , RemoteException ;
24
25 }
26
Popular Tags