1 7 8 package javax.sql; 9 10 import java.sql.SQLException ; 11 import java.io.PrintWriter ; 12 13 18 public interface CommonDataSource { 19 20 41 java.io.PrintWriter getLogWriter() throws SQLException ; 42 43 63 void setLogWriter(java.io.PrintWriter out) throws SQLException ; 64 65 78 void setLoginTimeout(int seconds) throws SQLException ; 79 80 93 int getLoginTimeout() throws SQLException ; 94 95 } 96 | Popular Tags |