Package oracle.jdbc.xa.client

Examples of oracle.jdbc.xa.client.OracleXAResource


    }

    public void start(Xid xid, int flags) throws XAException {
        dataSource.log.debug("start" + ":" + xid.getFormatId() + ":" + xid.getGlobalTransactionId() + ":" + xid.getBranchQualifier() + ":" + flags);
        doStart(xid, flags);
        xarsrc = new OracleXAResource(curCon.con);
        OracleXid oXid = getOracleXid(xid);
        xarsrc.start(oXid, flags);
        txctxs.put(xid, oXid.getTxContext());
        curCon = null;
        con = null;
View Full Code Here

TOP

Related Classes of oracle.jdbc.xa.client.OracleXAResource

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.