newConnection method

PostgreSQLExecutionContext newConnection()

Implementation

PostgreSQLExecutionContext newConnection() {
  return _connection ??
      PostgreSQLConnection(host, port, databaseName,
          username: username,
          password: password,
          timeoutInSeconds: timeoutInSeconds,
          queryTimeoutInSeconds: queryTimeoutInSeconds,
          timeZone: timeZone,
          useSSL: useSSL,
          isUnixSocket: isUnixSocket);
}