Can we create and access more than one table in SQLite database?
I need two tables in my application.
Can I create more than one table in SQLite?开发者_如何转开发
Yes you can have multiple tables and databases even.
Android does not impose any limitations beyond the standard SQLite concepts.
as can be read here http://developer.android.com/guide/topics/data/data-storage.html#db
YES you can... And even more, practically number of tables is unlimited
精彩评论