我在Rhomobile中看到我们可以从本地文件播种本地数据库。该文件必须是文本文件,格式是这样的,
client_id|last_sync_success
67320d31-e42e-4156-af91-5d9bd7175b08|
但是我可以有一些方法从csv文件中播种数据吗?
你可以使用下面这样的东西,
# For seeding question to question table from question.csv file
if MyModel.find(:all).empty?
file_name = File.join(Rho::RhoApplication.get_app_path('public')+'sample.csv')
file = File.new(file_name, "r")
while (line = file.gets)
col = (line.gsub("n", "")).split(";")
MyModel.create( {"id" => col[0].gsub('"',''), "text" => col[1].gsub('"','')} )
end
end
希望这对你有帮助。