Class: SqlStmt::Update

Inherits:
Query
  • Object
show all
Includes:
ValueUtil
Defined in:
lib/sqlstmt/update.rb

Instance Attribute Summary

Attributes inherited from Query

#fields, #joins, #tables, #wheres

Instance Method Summary collapse

Methods included from ValueUtil

#field, #fieldq

Methods inherited from Query

#join, #join_using, #left_join, #left_join_using, #no_where, #optional_where, #table, #to_s, #where

Constructor Details

#initializeUpdate

Returns a new instance of Update.



10
11
12
13
# File 'lib/sqlstmt/update.rb', line 10

def initialize
  super
  @values = []
end