Package com.microsoft.jdbcx.base

Examples of com.microsoft.jdbcx.base.BaseXid


        System.arraycopy(globalId, 0, globalTranId, 0, 1);
        System.arraycopy(tempBranchId, 0, branchQualifier, 0, 1);

        // Create the Transaction Id
        // Transaction Id has 3 components
        Xid xid = new BaseXid(0x1234, // Format identifier
                              globalTranId, // Global transaction identifier
                              branchQualifier); // Branch qualifier

        return xid;
    }
View Full Code Here

TOP

Related Classes of com.microsoft.jdbcx.base.BaseXid

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.