Examples of PGXAConnection


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
Copyright © 2018 www.massapi.com. 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.