Interface JDBCConnection

All Superinterfaces:
SqlClient, SqlConnection

public interface JDBCConnection extends SqlConnection
  • Method Details

    • getTransactionIsolation

      Future<Integer> getTransactionIsolation()
    • setTransactionIsolation

      Future<Void> setTransactionIsolation(int isolationLevel)
    • setQueryTimeout

      JDBCConnection setQueryTimeout(int timeoutInSeconds)
      Sets a connection wide query timeout. It can be over-written at any time and becomes active on the next query call.
      Parameters:
      timeoutInSeconds - the max amount of seconds the query can take to execute.