Class: Simple::SQL::Connection::PgConnection

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/simple/sql/connection.rb

Instance Method Summary collapse

Constructor Details

#initialize(raw_connection) ⇒ PgConnection

Returns a new instance of PgConnection.



18
19
20
21
# File 'lib/simple/sql/connection.rb', line 18

def initialize(raw_connection)
  @raw_connection = raw_connection
  @tx_nesting_level = 0
end