有关 SQLite iPhone 的帮助
我正在开发 iPhone 应用程序,我有 5 个 SQLite 表。首先我们设置数据库路径&数据库名称。就我而言,我该怎么做?我知道如何对 1 db 表执行此操作。 5张桌子我该怎么办?我应该创建 5 个不同的 dbName 变量吗? 1 dbPath 变量对所有人通用?我被困在这里了。我使用的是 SQLite3 而不是 FMDB。不知怎的,我无法使用 FMDB。另外,如果有人有 FMDB 示例应用程序/教程,除了 FMDB (fmdb.m) 提供的之外,请给我相同的链接。这会有帮助&赞赏。请朋友们帮助我。
I am developing iphone aplication is which i have 5 sqlite tables. First we set the database path & database name. In my case how can i do that? I know how to do this for 1 db table. how can i do for 5 tables? should i create 5 different dbName variables & 1 dbPath variable common to all? I am stuck here. I am using SQLite3 not the FMDB. Somehow i can't use FMDB. Also if anyone have FMDB sample application / tutorial except which is provided with FMDB (fmdb.m) please give me link to the same. That will be helpful & appreciated. Please help me friends.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 sqlite 中创建许多表。但首先,当您运行应用程序时,您需要将数据库复制到手机应用程序。您可以根据用途从该特定表中获取数据。
You can create many tables in sqlite. But First when you run your application you need to copy your Database to the phone application. Than you can get the data from that specific table depending on the use.