如何用Ruby循环往postgres中插入数据??
我从.xlsx文件中读取到数据data通过
data.each(id: 'id', name: 'name')do |hash|
puts hash.inspect
end
{:id=>1.0, :name=>"wang"}
{:id=>2.0, :name=>"xiao"}
{:id=>3.0, :name=>"fan"}
我想通过data.each方法将读出来的数据插入到postgresql的表中,
但是不知道该怎么写循环的SQL语句
conn.exec("INSERT INTO test1 VALUES ( 1, 'wang' );")
就是说不知道VALUES()中怎么用变量表示,看了很多地方都没解决。。。求救。。谢谢大家
postgres
postgresql