method

quoted_column_names

quoted_column_names(attributes = attributes_with_quotes)
private

No documentation available.

# File activerecord/lib/active_record/base.rb, line 3149
      def quoted_column_names(attributes = attributes_with_quotes)
        connection = self.class.connection
        attributes.keys.collect do |column_name|
          connection.quote_column_name(column_name)
        end
      end