1 2 9 10 package org.objectweb.rmijdbc; 11 12 import java.sql.SQLException ; 13 import java.rmi.RemoteException ; 14 15 public interface RJParameterMetaDataInterface extends java.rmi.Remote { 16 17 String getParameterClassName(int param) throws RemoteException , SQLException ; 18 int getParameterCount() throws RemoteException , SQLException ; 19 int getParameterMode(int param) throws RemoteException , SQLException ; 20 int getParameterType(int param) throws RemoteException , SQLException ; 21 String getParameterTypeName(int param) throws RemoteException , SQLException ; 22 int getPrecision(int param) throws RemoteException , SQLException ; 23 int getScale(int param) throws RemoteException , SQLException ; 24 int isNullable(int param) throws RemoteException , SQLException ; 25 boolean isSigned(int param) throws RemoteException , SQLException ; 26 27 }; 28 29 | Popular Tags |