gpt4 book ai didi

ios - 为什么我的 sqlite 文件在安装到 iOS 应用程序时没有数据?

转载 作者:行者123 更新时间:2023-11-29 10:37:09 25 4
gpt4 key购买 nike

为什么我的 sqlite 文件在安装到 iOS 应用程序时没有数据?

问题是应用程序在尝试从数据库中读取时看不到文件/数据库中的任何数据(它不存在)。

我有一个正在使用的 sqlite 文件,它被添加到 Xcode 中的项目中。如果我使用 sql 编辑器连接到文件/数据库,我会看到我的数据。然后我运行我的应用程序并使用相同的编辑器读取模拟器上的文件但没有数据。没有表格或行,但它是相同的文件名。

我没有做任何特殊的事情来将它复制到应用程序或离线文件夹或任何东西。看起来它会转到 Documents 文件夹(这似乎是默认设置,不知道如何更改它或是否需要更改)。

最佳答案

您应该从 Documents 文件夹中打开数据库,但您必须让打开的例程本身将其复制到那里。

  1. 确认数据库包含在包中。转到“目标设置”,单击“构建阶段”选项卡,然后查看“复制捆绑资源”列表。确保您的数据库包含在其中,如果不存在则添加它。

  2. 您的数据库打开例程应该:

    • 在Documents中查找数据库是否存在(使用NSFileManager);

    • 如果没有,将它从包中复制到 Documents;

    • 只有这样,您才能尝试从 Documents(但不是从包)打开数据库。

    请注意,如果您在完成上述三点之前曾尝试从 Documents 打开数据库,sqlite3_open 命令将在找不到数据库时创建一个空白数据库。因此,您可能需要确保在尝试上述操作之前删除所有空白数据库。最简单的方法是从设备/模拟器中删除该应用,然后再次运行它。

因此,您可能有这样的例程:

- (void) installDatabaseIfNeeded {

// Get the documents database path

NSString *documentsFolder = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
NSString *documentsDatabasePath = [documentsFolder stringByAppendingPathComponent:@"test.sqlite"]; // always use setter when setting property's value

NSFileManager *fileManager = [NSFileManager defaultManager];

if (![fileManager fileExistsAtPath:documentsDatabasePath]) {

// if the database doesn't exist in documents, look for it in the bundle and copy it if found

NSString *bundleDatabasePath = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"sqlite"];

if (bundleDatabasePath) {
NSError *error;
if (![fileManager copyItemAtPath:bundleDatabasePath toPath:documentsDatabasePath error:&error]) {
NSLog(@"copyItemAtPath failed: %@", error);
}
}
}
}

关于ios - 为什么我的 sqlite 文件在安装到 iOS 应用程序时没有数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26325016/

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