2

在我的应用程序中,我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;

现在,上面的代码将在警报视图中返回结果。但是,当我将其中一个值更改为变量时,它会崩溃并说我的数组中有 0 个结果。我已将代码放在下面,说明如何插入变量。

NSString *capsChoiceOne = self.choiceOneSelected.uppercaseString;

包含与硬编码版本相同的self.choiceOneSelected.uppercaseString内容,但不起作用。

任何帮助将不胜感激。

谢谢

4

1 回答 1

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];
于 2013-05-31T09:52:24.437 回答