Class: Table
- Inherits:
-
Object
- Object
- Table
- Defined in:
- lib/lilit_sql.rb
Instance Attribute Summary collapse
-
#rows ⇒ Object
Returns the value of attribute rows.
-
#table_name ⇒ Object
Returns the value of attribute table_name.
Instance Method Summary collapse
-
#initialize(struct, table_name) ⇒ Table
constructor
A new instance of Table.
- #subquery_name ⇒ Object
Constructor Details
Instance Attribute Details
#rows ⇒ Object
Returns the value of attribute rows.
384 385 386 |
# File 'lib/lilit_sql.rb', line 384 def rows @rows end |
#table_name ⇒ Object
Returns the value of attribute table_name.
384 385 386 |
# File 'lib/lilit_sql.rb', line 384 def table_name @table_name end |
Instance Method Details
#subquery_name ⇒ Object
391 392 393 |
# File 'lib/lilit_sql.rb', line 391 def subquery_name @table_name.to_s end |