Android OrmLite 预填充数据库
是否可以使用 OrmLite 创建一个 sql 脚本文件来轻松地用数据填充数据库?我做了一些搜索,但找不到任何简单的方法。我知道我可以用数据创建一些对象,我只是在寻找一种更干净的方法。
我正在考虑创建一个脚本文件,在加载时打开一个阅读器,并使用executeRaw() 方法将每个文件作为原始SQL 进行处理。有什么想法吗?
Is it possible with OrmLite to create a sql script file to easily populate the database with data? I did some searching and couldn't come up with anything easy. I know I can create some objects with data, I'm just looking for a cleaner method.
I'm thinking create a script file, open a a reader at load, and process each file as raw SQL the executeRaw() method. Any thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只是想为任何可能需要它的人发布我的解决方案
Just wanted to post my solution for anyone who might need it
好一个乔。我认为您对
executeRaw()
的想法很接近,但使用updateRaw()
代替。 Update 处理INSERT
、DELETE
和UPDATE
语句。您应该调用
TableUtils< /code> 当然首先创建您的模式:
希望这会有所帮助。您将来可能想使用邮件列表来解决问题:
Good one Joe. I think your idea of the
executeRaw()
is close but useupdateRaw()
instead. Update handlesINSERT
,DELETE
, andUPDATE
statements.You should call
TableUtils
to create your schema first of course:Hope this helps. You may want to use the mailing list for questions in the future: