Class: SqlStmtLib::SqlJoin
- Inherits:
-
Struct
- Object
- Struct
- SqlStmtLib::SqlJoin
- Defined in:
- lib/sqlstmt/data.rb
Overview
kwstr is the keyword string, like ‘JOIN’ or ‘LEFT JOIN’ table is a SqlTable object, representing the table being joined to on_expr is the ON expression for the join
Instance Attribute Summary collapse
-
#kwstr ⇒ Object
Returns the value of attribute kwstr.
-
#on_expr ⇒ Object
Returns the value of attribute on_expr.
-
#table ⇒ Object
Returns the value of attribute table.
Instance Attribute Details
#kwstr ⇒ Object
Returns the value of attribute kwstr
20 21 22 |
# File 'lib/sqlstmt/data.rb', line 20 def kwstr @kwstr end |
#on_expr ⇒ Object
Returns the value of attribute on_expr
20 21 22 |
# File 'lib/sqlstmt/data.rb', line 20 def on_expr @on_expr end |
#table ⇒ Object
Returns the value of attribute table
20 21 22 |
# File 'lib/sqlstmt/data.rb', line 20 def table @table end |