Method: FireRuby::Statement#initialize
- Defined in:
- lib/src.rb
#initialize(connection, transaction, sql, dialect) ⇒ Statement
This is the constructor for the Statement class.
Parameters
- connection
-
The Connection object that the SQL statement will be executed through.
- transaction
-
The Transaction object that the SQL statement will be executed under.
- sql
-
The SQL statement to be prepared for execution.
- dialect
-
The Firebird dialect to be used in preparing the SQL statement.
567 568 |
# File 'lib/src.rb', line 567 def initialize(connection, transaction, sql, dialect) end |