Class: SqlStmt::Update
- Includes:
- ValueUtil
- Defined in:
- lib/sqlstmt/update.rb
Instance Attribute Summary
Attributes inherited from Query
#fields, #joins, #tables, #wheres
Instance Method Summary collapse
-
#initialize ⇒ Update
constructor
A new instance of Update.
Methods included from ValueUtil
Methods inherited from Query
#join, #join_using, #left_join, #left_join_using, #no_where, #optional_where, #table, #to_s, #where
Constructor Details
#initialize ⇒ Update
Returns a new instance of Update.
10 11 12 13 |
# File 'lib/sqlstmt/update.rb', line 10 def initialize super @values = [] end |