1 7 8 package javax.sql; 9 10 import java.sql.*; 11 12 21 22 public interface XADataSource { 23 24 33 XAConnection getXAConnection() throws SQLException; 34 35 47 XAConnection getXAConnection(String user, String password) 48 throws SQLException; 49 50 58 java.io.PrintWriter getLogWriter() throws SQLException; 59 60 77 void setLogWriter(java.io.PrintWriter out) throws SQLException; 78 79 91 void setLoginTimeout(int seconds) throws SQLException; 92 93 108 int getLoginTimeout() throws SQLException; 109 110 } 111 112 113 114 115 116 | Popular Tags |