Class: Adhoq::AdhocExecution
- Inherits:
-
Object
- Object
- Adhoq::AdhocExecution
- Defined in:
- lib/adhoq/adhoc_execution.rb
Instance Attribute Summary collapse
-
#raw_sql ⇒ Object
readonly
Returns the value of attribute raw_sql.
-
#report_format ⇒ Object
readonly
Returns the value of attribute report_format.
Instance Method Summary collapse
-
#initialize(report_format, raw_sql) ⇒ AdhocExecution
constructor
A new instance of AdhocExecution.
Constructor Details
#initialize(report_format, raw_sql) ⇒ AdhocExecution
Returns a new instance of AdhocExecution.
6 7 8 9 |
# File 'lib/adhoq/adhoc_execution.rb', line 6 def initialize(report_format, raw_sql) @report_format = report_format @raw_sql = raw_sql end |
Instance Attribute Details
#raw_sql ⇒ Object (readonly)
Returns the value of attribute raw_sql.
4 5 6 |
# File 'lib/adhoq/adhoc_execution.rb', line 4 def raw_sql @raw_sql end |
#report_format ⇒ Object (readonly)
Returns the value of attribute report_format.
4 5 6 |
# File 'lib/adhoq/adhoc_execution.rb', line 4 def report_format @report_format end |