1 7 8 package javax.sql; 9 10 import java.sql.SQLException ; 11 12 13 22 23 public interface ConnectionPoolDataSource { 24 25 34 PooledConnection getPooledConnection() throws SQLException ; 35 36 47 PooledConnection getPooledConnection(String user, String password) 48 throws SQLException ; 49 50 68 java.io.PrintWriter getLogWriter() throws SQLException ; 69 70 88 void setLogWriter(java.io.PrintWriter out) throws SQLException ; 89 90 103 void setLoginTimeout(int seconds) throws SQLException ; 104 105 118 int getLoginTimeout() throws SQLException ; 119 120 } 121 122 123 124 125 126 | Popular Tags |