1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package javax.sql;
- import java.io.PrintWriter;
- import java.sql.SQLException;
- public interface XADataSource
- {
- XAConnection getXAConnection() throws SQLException;
- XAConnection getXAConnection(String user, String password) throws
- SQLException;
- PrintWriter getLogWriter() throws SQLException;
- void setLogWriter(PrintWriter out) throws SQLException;
- void setLoginTimeout(int seconds) throws SQLException;
- int getLoginTimeout() throws SQLException;
- }
|