Package com.impossibl.postgres.api.jdbc

Examples of com.impossibl.postgres.api.jdbc.PGConnection


  @Override
  public Connection getConnection() throws SQLException {
    if (logger.isLoggable(Level.FINE))
      debug("PGXAConnection.getConnection called");

    PGConnection c = (PGConnection)super.getConnection();

    // When we're outside an XA transaction, autocommit
    // is supposed to be true, per usual JDBC convention.
    // When an XA transaction is in progress, it should be
    // false.
View Full Code Here

TOP

Related Classes of com.impossibl.postgres.api.jdbc.PGConnection

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.