1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

r1608@asus: jeremy | 2005-07-03 00:13:57 -0700

quoter required for column quoting


git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1626 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper 2005-07-03 08:32:12 +00:00
parent b02776c232
commit 397c8ee2a9

View file

@ -1384,18 +1384,20 @@ module ActiveRecord #:nodoc:
end end
def quoted_column_names(attributes = attributes_with_quotes) def quoted_column_names(attributes = attributes_with_quotes)
attributes.keys.collect { |column_name| connection.quote_column_name(column_name) } attributes.keys.collect do |column_name|
end self.class.connection.quote_column_name(column_name)
def quote_columns(column_quoter, hash)
hash.inject({}) do |list, pair|
list[column_quoter.quote_column_name(pair.first)] = pair.last
list
end end
end end
def quoted_comma_pair_list(column_quoter, hash) def quote_columns(quoter, hash)
comma_pair_list(quote_columns(column_quoter, hash)) hash.inject({}) do |quoted, (name, value)|
quoted[quoter.quote_column_name(name)] = value
quoted
end
end
def quoted_comma_pair_list(quoter, hash)
comma_pair_list(quote_columns(quoter, hash))
end end
def object_from_yaml(string) def object_from_yaml(string)