Package org.postgresql.xa

Examples of org.postgresql.xa.PGXAConnection


import org.postgresql.xa.PGXAConnection;

public class PGUtils {

    public static XAConnection createXAConnection(Connection physicalConn) throws SQLException {
        return new PGXAConnection((BaseConnection) physicalConn);
    }
View Full Code Here

TOP

Related Classes of org.postgresql.xa.PGXAConnection

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.