Class BasicManagedDataSource

  • All Implemented Interfaces:
    java.sql.Wrapper, javax.sql.CommonDataSource, javax.sql.DataSource

    public class BasicManagedDataSource
    extends BasicDataSource

    BasicManagedDataSource is an extension of BasicDataSource which creates ManagedConnections. This data source can create either full two-phase-commit XA connections or one-phase-commit local connections. Both types of connections are committed or rolled back as part of the global transaction (a.k.a. XA transaction or JTA Transaction), but only XA connections can be recovered in the case of a system crash.

    BasicManagedDataSource adds the TransactionManager and XADataSource properties. The TransactionManager property is required and is used to elist connections in global transactions. The XADataSource is optional and if set is the class name of the XADataSource class for a two-phase-commit JDBC driver. If the XADataSource property is set, the driverClassName is ignored and a DataSourceXAConnectionFactory is created. Otherwise, a standard DriverConnectionFactory is created and wrapped with a LocalXAConnectionFactory.

    Version:
    $Revision$
    See Also:
    BasicDataSource, ManagedConnection
    • Constructor Detail

      • BasicManagedDataSource

        public BasicManagedDataSource()
    • Method Detail

      • getXaDataSourceInstance

        public javax.sql.XADataSource getXaDataSourceInstance()
        Gets the XADataSource instance used by the XAConnectionFactory.
        Returns:
        the XADataSource
      • setXaDataSourceInstance

        public void setXaDataSourceInstance​(javax.sql.XADataSource xaDataSourceInstance)

        Sets the XADataSource instance used by the XAConnectionFactory.

        Note: this method currently has no effect once the pool has been initialized. The pool is initialized the first time one of the following methods is invoked: getConnection, setLogwriter, setLoginTimeout, getLoginTimeout, getLogWriter.

        Parameters:
        xaDataSourceInstance - XADataSource instance
      • getTransactionManager

        public javax.transaction.TransactionManager getTransactionManager()
        Gets the required transaction manager property.
        Returns:
        the transaction manager used to enlist connections
      • setTransactionManager

        public void setTransactionManager​(javax.transaction.TransactionManager transactionManager)
        Sets the required transaction manager property.
        Parameters:
        transactionManager - the transaction manager used to enlist connections
      • getXADataSource

        public java.lang.String getXADataSource()
        Gets the optional XADataSource class name.
        Returns:
        the optional XADataSource class name
      • setXADataSource

        public void setXADataSource​(java.lang.String xaDataSource)
        Sets the optional XADataSource class name.
        Parameters:
        xaDataSource - the optional XADataSource class name