在我的应用程序中,我使用 FMDB 来查询我的 sqlite 数据库。我将变量从一个 View 传递到另一个 View ,最后所有选择的变量都填充了所选值。在结果页面上,我可以在标签中显示这些值。但是当我将它们传递给 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;
现在上面的代码将在警报 View 中返回结果。但是,当我将其中一个值更改为变量时,它会崩溃并说我的数组中有 0 个结果。我已将代码放在下面,说明如何插入变量。
NSString *capsChoiceOne = self.choiceOneSelected.uppercaseString;
self.choiceOneSelected.uppercaseString 包含与硬编码版本相同但不起作用。
任何帮助将不胜感激。
谢谢
Best Answer-推荐答案 strong>
检查self.choiceOneSelected.uppercaseString; 是否不是nil 。
您的查询也有一些问题,您需要将 string 值包装在 '
所以使用:
FMResultSet *results = [db executeQueryWithFormat"SELECT * FROM allitems WHERE choice1='%@' AND choice2='%@' AND choice3='%@' AND choice4='%@'"
,capsChoiceOne,capsChoiceTwo,capsChoiceThree,capsChoiceFour];
关于iphone - 将变量传递给 FMDB 的问题,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/16853906/
|