|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
A factory for XAConnection objects. An object that implements the XADataSource interface is typically registered with a JNDI service provider.
Method Summary | |
int |
getLoginTimeout()
Gets the maximum time in seconds that this data source can wait while attempting to connect to a database. |
PrintWriter |
getLogWriter()
Get the log writer for this data source. |
XAConnection |
getXAConnection()
Attempt to establish a database connection. |
XAConnection |
getXAConnection(String user,
String password)
Attempt to establish a database connection. |
void |
setLoginTimeout(int sec)
Sets the maximum time in seconds that this data source will wait while attempting to connect to a database. |
void |
setLogWriter(PrintWriter printWriter)
Set the log writer for this data source. |
Method Detail |
public PrintWriter getLogWriter() throws SQLException
Get the log writer for this data source.
The log writer is a character output stream to which all logging and tracing messages for this data source object instance will be printed. This includes messages printed by the methods of this object, messages printed by methods of other objects manufactured by this object, and so on. Messages printed to a data source specific log writer are not printed to the log writer associated with the java.sql.Drivermanager class. When a data source object is created the log writer is initially null, in other words, logging is disabled.
SQLException
- - if a database-access error occurs.public int getLoginTimeout() throws SQLException
SQLException
- - if a database-access error occurs.public XAConnection getXAConnection() throws SQLException
SQLException
- - if a database-access error occurs.public XAConnection getXAConnection(String user, String password) throws SQLException
user
- - the database user on whose behalf the Connection is being madepassword
- - the user's password
SQLException
- - if a database-access error occurs.public void setLogWriter(PrintWriter printWriter) throws SQLException
Set the log writer for this data source.
The log writer is a character output stream to which all logging and tracing messages for this data source object instance will be printed. This includes messages printed by the methods of this object, messages printed by methods of other objects manufactured by this object, and so on. Messages printed to a data source specific log writer are not printed to the log writer associated with the java.sql.Drivermanager class. When a data source object is created the log writer is initially null, in other words, logging is disabled.
printWriter
- - the new log writer; to disable, set to null
SQLException
- - if a database-access error occurs.public void setLoginTimeout(int sec) throws SQLException
sec
- - the data source login time limit
SQLException
- - if a database-access error occurs.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |