simpledb.remote
Interface RemoteResultSet

All Superinterfaces:
java.rmi.Remote
All Known Implementing Classes:
RemoteResultSetImpl

public interface RemoteResultSet
extends java.rmi.Remote

The RMI remote interface corresponding to ResultSet. The methods are identical to those of ResultSet, except that they throw RemoteExceptions instead of SQLExceptions.

Author:
Edward Sciore

Method Summary
 void close()
           
 int getInt(java.lang.String fldname)
           
 RemoteMetaData getMetaData()
           
 java.lang.String getString(java.lang.String fldname)
           
 boolean next()
           
 

Method Detail

next

boolean next()
             throws java.rmi.RemoteException
Throws:
java.rmi.RemoteException

getInt

int getInt(java.lang.String fldname)
           throws java.rmi.RemoteException
Throws:
java.rmi.RemoteException

getString

java.lang.String getString(java.lang.String fldname)
                           throws java.rmi.RemoteException
Throws:
java.rmi.RemoteException

getMetaData

RemoteMetaData getMetaData()
                           throws java.rmi.RemoteException
Throws:
java.rmi.RemoteException

close

void close()
           throws java.rmi.RemoteException
Throws:
java.rmi.RemoteException