1 2 9 10 package org.objectweb.rmijdbc; 11 12 import java.sql.*; 13 import java.rmi.RemoteException ; 14 15 37 public interface RJDriverInterface extends java.rmi.Remote { 38 39 42 void shutdown(String pwd) throws RemoteException ; 43 44 68 RJConnectionInterface connect(String url, java.util.Properties info) 69 throws RemoteException , SQLException; 70 71 80 boolean acceptsURL(String url) throws RemoteException , SQLException; 81 82 83 98 RJDriverPropertyInfo[] getPropertyInfo(String url, 99 java.util.Properties info) throws RemoteException , SQLException; 100 101 102 105 int getMajorVersion() throws RemoteException , SQLException; 106 107 110 int getMinorVersion() throws RemoteException , SQLException; 111 112 113 129 boolean jdbcCompliant() throws RemoteException , SQLException; 130 } 131 132 | Popular Tags |