gpt4 book ai didi

objective-c - 从SQLite提取数值

转载 作者:行者123 更新时间:2023-12-03 11:26:05 26 4
gpt4 key购买 nike

我的SQLite字段是数字类型(int)。
当我尝试将其提取到我的应用程序中时,如下所示:

int id_quiz= (NSInteger) sqlite3_column_text(statement, 0);

我得到了一个像 129600224这样的巨大值,它不是正确的值(并且每次我运行该应用程序时,它都会改变)。

但是,在同一个表中,我从其他字段中获得了字符串值就好了:
NSString *question = [[NSString alloc] 
initWithUTF8String:
(const char *) sqlite3_column_text(
statement, 1)];

问题是,如何从SQLite获取数值?
提前感谢。

最佳答案

尝试这个:

int id_quiz =sqlite3_column_int(statement, 0);

for more information SQLite

关于objective-c - 从SQLite提取数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9698486/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com