gpt4 book ai didi

ios - Phonegap SQLite 插件预填充数据库 iOS

转载 作者:行者123 更新时间:2023-11-28 22:50:57 26 4
gpt4 key购买 nike

我想在我的应用程序中分发一个已填充的数据库。我正在尝试实现 SQLitePlugin ,但正如该页面所说,没有关于如何在 iOS 上执行此操作的任何文档。我试图实现这个 outdated步骤但没有任何运气。有没有人这样做过?

最佳答案

我找到了一个至少对我有用的解决方案,所以这里是:

我使用并遵循了您提到的链接中的教程:http://gauravstomar.blogspot.fr/2011/08/prepopulate-sqlite-in-phonegap.html

一定要复制并粘贴好 database.db 和 000...001.db(好的要么在/Caches 和/Caches/file_0 文件夹中,要么在/WebKit 和/WebKit/file__0 中,我不不记得了,所以如果不起作用,请尝试一个然后另一个)。然后我将它们粘贴到我的资源项目目录中。

我修改了两行:

NSString *masterPath = [libraryDir stringByAppendingPathComponent:@"WebKit/Databases/"];
NSString *databasePath = [libraryDir stringByAppendingPathComponent:@"WebKit/Databases/file__0/"];

通过以下几行:

NSString *masterPath = [libraryDir stringByAppendingPathComponent:@"Caches/"];
NSString *databasePath = [libraryDir stringByAppendingPathComponent:@"Caches/file__0/"];

从您的模拟器/设备中删除您的应用程序。然后运行.. 它有效,我的数据库已预先填充。

关于ios - Phonegap SQLite 插件预填充数据库 iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12022845/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com