在我的应用中,我使用FMDB
来查询我的sqlite
数据库。我将变量从一个视图传递到另一个视图,最后所有选择变量都填充了所选的值。在结果页面上,我可以在标签中显示这些值。但是当我将它们传递给FMDB
来查询数据库时,我没有得到任何返回的值。它崩溃并说数组为0,我知道它不是。
以下代码示例。
- (NSMutableArray *) getChoices
{
NSMutableArray *choices = [[NSMutableArray alloc] init];
FMDatabase *db = [FMDatabase databaseWithPath:[Utility getDatabasePath]];
[db open];
NSString *capsChoiceOne = @"CHOICE 1";
NSString *capsChoiceTwo = @"CHOICE 2";
NSString *capsChoiceThree = @"CHOICE 3";
NSString *capsChoiceFour = @"CHOICE 4";
FMResultSet *results = [db executeQueryWithFormat:@"SELECT * FROM allitems WHERE choice1=%@ AND choice2=%@ AND choice3=%@ AND choice4=%@"
,capsChoiceOne,capsChoiceTwo,capsChoiceThree,capsChoiceFour];
while([results next])
{
Choices *choice = [[Choices alloc] init];
choice.result = [results stringForColumn:@"result"];
[choices addObject:choice];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Your Result"
message:choice.result
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
}
[db close];
return choices;
现在上面的代码会将结果带回Alert View。但是当我将其中一个值更改为变量时,它会崩溃并说我的数组中有0个结果。我已经把下面的代码放在我如何插入变量。
NSString *capsChoiceOne = self.choiceOneSelected.uppercaseString;
self.choiceOneSelected.uppercaseString
包含与硬编码版本相同但不起作用。
任何帮助都会感激不尽。
谢谢
答案 0 :(得分:1)
检查self.choiceOneSelected.uppercaseString;
是否不是nil
。
此外,您的查询存在一些问题,您需要在string
中包含'
个值
所以使用:
FMResultSet *results = [db executeQueryWithFormat:@"SELECT * FROM allitems WHERE choice1='%@' AND choice2='%@' AND choice3='%@' AND choice4='%@'"
,capsChoiceOne,capsChoiceTwo,capsChoiceThree,capsChoiceFour];