1 2 9 10 package org.objectweb.rmijdbc; 11 12 import java.sql.*; 13 import java.rmi.RemoteException ; 14 import java.util.Map ; 15 16 21 22 public interface RJArrayInterface extends java.rmi.Remote 23 { 24 28 Object getArray() 29 throws RemoteException , SQLException; 30 31 36 Object getArray(long index, int count) 37 throws RemoteException , SQLException; 38 39 44 Object getArray(long index, int count, Map map) 45 throws RemoteException , SQLException; 46 47 51 Object getArray(Map map) 52 throws RemoteException , SQLException; 53 54 58 int getBaseType() 59 throws RemoteException , SQLException; 60 61 65 String getBaseTypeName() 66 throws RemoteException , SQLException; 67 68 72 RJResultSetInterface getResultSet() 73 throws RemoteException , SQLException; 74 75 79 RJResultSetInterface getResultSet(long index, int count) 80 throws RemoteException , SQLException; 81 82 86 RJResultSetInterface getResultSet(long index, int count, Map map) 87 throws RemoteException , SQLException; 88 89 93 RJResultSetInterface getResultSet(Map map) 94 throws RemoteException , SQLException; 95 96 }; 97 98 | Popular Tags |