4

来自非 SQL 背景,我创建了一个名为 test 的简单表,其中包含 3 个字段:

    NSString *testtable = @"create table if not exists test(testid integer primary key, userid integer, contentid text)";
if (![db executeUpdate:testtable]) {
    NSLog(@"create test, %d:%@", [db lastErrorCode], [db lastErrorMessage]);
    return NO;
}

当我向表中插入记录时,出现 exc_bad_access 错误:

    if (![db executeUpdate:@"insert into test values(?,?,?)", NULL, 1, @"HELLO"]) {
    NSLog(@"insert test, %d:%@", [db lastErrorCode], [db lastErrorMessage]);
    return NO;
}

如果我将列 'userid' 类型从整数更改为文本,这会很好。我在控制台上使用 sqlite 命令测试表,它也运行良好。你们有什么感想?谢谢...

我尝试另一种方法来处理这个问题:

    if (![db executeUpdate:@"insert into test values(?,?,?)", NULL, [NSNumber numberWithInt:1], @"HELLO"]) {
    NSLog(@"testint, %d:%@", [db lastErrorCode], [db lastErrorMessage]);
    return NO;
}

然后它工作。我说不出原因……也许 fmdb 只支持对象插入。

4

2 回答 2

2

我相信 FMDB 需要对象来替换 ? 和 int 不是对象。将 1 更改为[NSNumber numberWithInt:1]

另外,你在哪里打开你的数据库,你有这样的东西吗?

db = [FMDatabase databaseWithPath:writableDBPath];

    if ([db open]) {

之后立即添加[db setTraceExecution:TRUE];,它会为您记录您的 SQL 文本。

可以先创建您的 SQL NSString,然后插入您的 int,然后让 FMDB 运行您已经填充的字符串。

于 2012-05-15T14:39:40.777 回答
0

executeUpdate:仅支持作为占位符值传递的对象。您可以使用 executeQueryWithFormat: 如果您希望使用 printf 样式参数(您可以使用 %d 来表示您的号码)。不过,我个人会坚持使用对象,因为 executeQueryWithFormat: 无论如何都会最终将值转换为对象。

于 2012-05-15T18:45:49.177 回答