有没有可能在android数据库中插入大量记录?
我想在一秒钟内将 400 个问题插入数据库。如果有人知道示例或答案,请告诉我。非常需要并感谢您的帮助。预先感谢...
谢谢你, 克里希纳
I want to insert 400 questions into database with in a second. Please let me know if any one knows the example or answer. Your help is much needed and appreciated. Thanks in advance....
Thank you,
Krishna
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用编译语句。
如何在 Android 中的 SQlite 中使用准备好的语句?< /a>
android 中有一个帮助器类,您也可以使用它来使事情变得更容易一些。它是 DatabaseUtils.InsertHelper 这是一个 关于的好教程如何使用它。
Use a compiled statement.
How do I use prepared statements in SQlite in Android?
There's a helper class in android that you can use to make things a bit easier also. It's DatabaseUtils.InsertHelper and here is a good tutorial on how to use it.
在单独的线程中插入数据库。使用准备好的语句。
Insert into the database in separate thread. Use prepared statements.