Last active
March 14, 2018 17:38
-
-
Save maxjustus/4639416 to your computer and use it in GitHub Desktop.
Simple SQL bulk insert in Rails
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Takes a table name, and an array of hashes where keys are column names and values are values. | |
# Expects hashes to all contain the same keys. | |
def bulk_insert(table, rows) | |
columns = rows.first.keys | |
to_insert = rows.map do |d| | |
vals = columns.map {|k| d[k] } | |
ActiveRecord::Base.send(:replace_bind_variables, "(#{vals.length.times.collect {'?'}.join(',')})", vals) | |
end | |
ActiveRecord::Base.connection.execute(<<-SQL) | |
INSERT INTO | |
#{table} | |
(#{columns.join(',')}) | |
VALUES #{to_insert.join(",")} | |
SQL | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment