1

我正在尝试从我的文档目录中打开 sqlite 数据库:

NSString *docDir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *dbFileName = [docDir stringByAppendingPathComponent:@"DatabaseName.sqlite"];

self.db = [FMDatabase databaseWithPath:dbFileName];

self.db.logsErrors = YES;

self.db = _db;
if ([self.db open]) {
    NSLog(@"database opened");

}
NSLog(@"docDir = %@",[NSString stringWithFormat:@"%@%@",docDir,dbFileName]);

NSLog 显示奇怪的路径docDir=/Users/userName/Documents/Users/userName/Documents/DatabaseName.sqlite而不是/Users/userName/Documents/DatabaseName.sqlite. 打开时没有错误或警告。

在此之后,我尝试从我的表中获取 count(*)

NSString *queryString = [NSString stringWithFormat:@"SELECT count(*) FROM histories"];
FMResultSet *result = [self.db executeQuery:queryString];
NSLog(@"count = %i", [result intForColumnIndex:0]);

当 10k 行时数据库有更多,但 NSLog 显示为 0。应用程序不适用于 iOS,仅适用于命令行。我在哪里可以找到问题?

4

1 回答 1

2

你有

docDir = /Users/userName/Documents
dbFileName = /Users/userName/Documents/DatabaseName.sqlite

因此在

NSLog(@"docDir = %@",[NSString stringWithFormat:@"%@%@",docDir,dbFileName]);

thedocDir被打印两次(dbFileName已经包含docDir)。

备注:该声明self.db = _db;看起来很可疑,您可能需要删除它。

补充: FMDB 文档指出:

在尝试访问查询中返回的值之前,您必须始终调用-[FMResultSet next],即使您只期望一个。

所以你的代码可能应该是这样的:

FMResultSet *result = [self.db executeQuery:queryString];
if ([result next]) {
    NSLog(@"count = %i", [result intForColumnIndex:0]);
}
于 2012-11-03T12:39:54.173 回答