Tries to establish a physical database connection using the given user name and password.

public javax.sql.XAConnection getXAConnection(java.lang.String user,
                                              java.lang.String password)

Parameters

user

A string that contains the user name.

password

A string that contains the password.

Return Value

An XAConnection object.

Exceptions

java.sql.SQLException

Remarks

This getXAConnection method is specified by the getXAConnection method in the javax.sql.XADataSource interface.

Note: This method is typically called by XA connection pool implementations and not by regular JDBC application code.

See Also