android sqlite性能最佳实践(通过始终打开的连接/游标直接数据访问VS按需访问和自定义对象)
我目前正在将我的 iPhone 应用程序移植到 Android。这个应用程序大量使用 SQLite 数据。在 iPhone 上,我用 sqlite 数据填充自定义对象,根据需要多次打开和关闭与数据库的连接,
但是在 Android 上,我还没有遇到很多遵循这种方法的教程。他们只是使用光标并直接显示数据,而不使用自定义对象和集合
我想知道在Android上是否有任何特殊原因?你会建议我做什么?即:是否可以在 android 上的 sqlite 数据库上建立始终连接/光标并直接显示数据,或者采用 iphone 方式,即从 sqlite 填充自定义对象集合并将 UI 数据绑定到该集合sqlite 光标的问题
提前感谢各位
im currently porting my iphone app to android. this app makes heavy use of sqlite data. on the iphone i populate my custom objects with sqlite data, open and close my connection to the database multiple times on demand
however on the android, i have not come across many tutorials which follow this approach. they simply use a cursor and show the data directly without making use of custom objects and collections
i wanted to know if there was any particular reason for this on the android? what would you suggest me to here? ie: is it feasible to have an always on connection / cursor the the sqlite db on the android and display the data directly OR go the iphone way that is to populate collection of custom objects from sqlite and have the UI data bound to this collection instead of the sqlite cursor
thanks in advance folks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为最佳方法不会因平台而有任何显着程度的变化。
I don't think optimal approach will vary with platform to any significant degree.