我正在阅读这篇文章(
http://www.vogella.com/tutorials/AndroidSQLite/article.html),以了解Android应用程序中的sqlite数据库.
It is good practice to create a separate class per table. This class defines static onCreate() and onUpgrade() methods. These methods are called in the corresponding methods of sqliteOpenHelper. This way your implementation of sqliteOpenHelper stays readable,even if you have several tables.
如果我正确理解了这个提示,我应该为我的数据库中的每个表都有一个类?
这真的是最好的做法吗?
如果是这样,那么使用多个表的复杂查询呢?如果创建在不同的类中,我该如何管理?
如何正确保存数据库版本?对于每个表的更改,我会更改数据库版本号吗?
谢谢