菜鸟教程小白 发表于 2022-12-12 11:26:30

iphone - 将变量传递给 FMDB 的问题


                                            <p><p>在我的应用程序中,我使用 <code>FMDB</code> 来查询我的 <code>sqlite</code> 数据库。我将变量从一个 View 传递到另一个 View ,最后所有选择的变量都填充了所选值。在结果页面上,我可以在标签中显示这些值。但是当我将它们传递给 <code>FMDB</code> 以查询数据库时,我没有得到任何返回值。它崩溃并说数组是 0,我知道它不是。 </p>

<p><strong>下面的代码示例。</strong></p>

<pre><code>- (NSMutableArray *) getChoices
{
NSMutableArray *choices = [ init];
FMDatabase *db = ];
;

NSString *capsChoiceOne = @&#34;CHOICE 1&#34;;
NSString *capsChoiceTwo = @&#34;CHOICE 2&#34;;
NSString *capsChoiceThree = @&#34;CHOICE 3&#34;;
NSString *capsChoiceFour = @&#34;CHOICE 4&#34;;

FMResultSet *results = [db executeQueryWithFormat:@&#34;SELECT * FROM allitems WHERE choice1=%@ AND choice2=%@ AND choice3=%@ AND choice4=%@&#34;
                        ,capsChoiceOne,capsChoiceTwo,capsChoiceThree,capsChoiceFour];

while()
{
    Choices *choice = [ init];

    choice.result = ;

    ;

    UIAlertView *alert = [ initWithTitle:@&#34;Your Result&#34;
                                                    message:choice.result
                                                   delegate:nil
                                          cancelButtonTitle:@&#34;OK&#34;
                                          otherButtonTitles:nil];
    ;
}

;

return choices;
</code></pre>

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

<pre><code>NSString *capsChoiceOne = self.choiceOneSelected.uppercaseString;
</code></pre>

<p><code>self.choiceOneSelected.uppercaseString</code> 包含与硬编码版本相同但不起作用。</p>

<p>任何帮助将不胜感激。</p>

<p>谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>检查<code>self.choiceOneSelected.uppercaseString;</code>是否不是<code>nil</code>。</p>

<p>您的查询也有一些问题,<strong>您需要将 <code>string</code> 值包装在 <code>'</code></strong></p>

<p>所以使用:</p>

<pre><code>FMResultSet *results = [db executeQueryWithFormat:@&#34;SELECT * FROM allitems WHERE choice1=&#39;%@&#39; AND choice2=&#39;%@&#39; AND choice3=&#39;%@&#39; AND choice4=&#39;%@&#39;&#34;
                        ,capsChoiceOne,capsChoiceTwo,capsChoiceThree,capsChoiceFour];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 将变量传递给 FMDB 的问题,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/16853906/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/16853906/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 将变量传递给 FMDB 的问题