调用SQLite方法时EXC_BAD_ACCESS

时间:2013-05-17 12:26:51

标签: objective-c sqlite exc-bad-access

sqlite3_stmt *stmt;

    NSString *selectQuery =[NSString stringWithFormat:@"select * from myaccount"];

    NSMutableArray *fl =[[NSMutableArray alloc]init];
    NSString *sname;
    NSString *myMobNo;
    NSMutableString *str = [[NSMutableString alloc]init];

    if (sqlite3_prepare_v2(db, [selectQuery UTF8String], -1, &stmt, nil) == SQLITE_OK) {
        while (sqlite3_step(stmt) == SQLITE_ROW) {

            sname = [NSString stringWithUTF8String:(char *)sqlite3_column_text(stmt, 1)];
            myMobNo = [NSString stringWithUTF8String:(char *)sqlite3_column_text(stmt, 4)];
            [str appendString:[NSString stringWithFormat:@"%@!%@",sname,myMobNo]];

            [fl addObject:str];

        }
    }

    sqlite3_finalize(stmt);

    return fl;

我在我的项目中使用Objective C和SQL Lite。当我调用上面的方法时,我在If条件下收到EXC_BAD_ACCESS错误。我的代码出了什么问题。任何帮助都会受到赞赏。谢谢提前。

  0x0003c099 -[DBModel getCName] + 112
1   Kinkey  0x0001d623 -[ChatViewController viewDidLoad] + 302
2   0x34dae579 <redacted> + 364
3   0x34e031f7 <redacted> + 26
4   0x34e0313d <redacted> + 28
5   0x34e03021 <redacted> + 32
6   0x34e02f4d <redacted> + 272
7   0x34e02699 <redacted> + 64
8   0x34e02581 <redacted> + 324
9   0x34df0b5b <redacted> + 858
10  0x34df07fb <redacted> + 38
11  0x0004cd33 -[ChatView tableView:didSelectRowAtIndexPath:] + 970
12  0x34e5131d <redacted> + 876
13  0x34ed3da9 <redacted> + 156
14  0x3388f657 <redacted> + 450
15  0x32f55857 <redacted> + 14
16  0x32f55503 <redacted> + 274
17  0x32f54177 <redacted> + 1230
18  0x32ec723d CFRunLoopRunSpecific + 356
19  0x32ec70c9 CFRunLoopRunInMode + 104
20  0x36aa533b GSEventRunModal + 74
21  0x34de32b9 UIApplicationMain + 1120
22  0x00002a31 main + 108
23  0x000024cc start + 40



NSMutableArray *Details = [[DBModel database]getCName];
    NSArray *array = [[Details objectAtIndex:0] componentsSeparatedByString:@"!"];
    acName = [array objectAtIndex:0];
    acMobileNo = [array objectAtIndex:1];

if ((char *)sqlite3_column_text(stmt4, 1)!= nil) {
        sname = [NSString stringWithUTF8String:(char *)sqlite3_column_text(stmt4, 1)];
        }

2 个答案:

答案 0 :(得分:2)

如果db指针未指向有效的打开数据库,也可能导致此问题。如果(a)您忽略了致电sqlite3_opendb指针不是NULL,则可能会发生这种情况;或者(b)您在某个时刻关闭了数据库而忽略了NULL db,然后忽略重新打开它再尝试再次使用它。最重要的是,如果您将无效的非NULL值传递给sqlite_prepare_v2,则会生成EXC_BAD_ACCESS例外。

另外,此代码中还有另一个异常风险:如果这两个文本字段中有一个是NULL(例如,数据库中有NULL个值,或者列索引​​错误(例如作为从零开始的索引,sqlite3_column_text(stmt, 1)是第二列,sqlite3_column_text(stmt, 4)是第五列),你的程序也会生成一个异常(虽然是一个不同的例外)。底线,你不能传递{ {1}}值NULL而不生成异常。我可能会建议您在调用stringWithUTF8String之前检查这两个值。(如果您已定义数据库,那么这些列为stringWithUTF8String,这可以减轻这种风险。)

答案 1 :(得分:1)

当您已经释放该对象并尝试重新使用而不保留时,会出现此错误。