[NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt,0)];

发布于 2024-09-28 08:29:47 字数 386 浏览 1 评论 0原文

我使用 sqlite

我以这种方式获得 frmo DB 的返回值

returnCount = [NSString  stringWithUTF8String:(char *)sqlite3_column_text(selectstmt,0)];

,但返回值是一个整数值。 我如何获得一个 int 值而不是将其放入字符串中...就像这里的这个东西

[NSString  stringWithUTF8String:(char *)sqlite3_column_text(selectstmt,0)];

是用于字符串的,有什么方法可以立即将其放入“整数”中,否则我需要对其进行转换。

请提出建议。

i m using sqlite

i am geting a return value frmo DB in this manner

returnCount = [NSString  stringWithUTF8String:(char *)sqlite3_column_text(selectstmt,0)];

but the returend value is an integer value.
how can i get a int value instead of paasing it in string...like this thing here

[NSString  stringWithUTF8String:(char *)sqlite3_column_text(selectstmt,0)];

is for string, is there any way to get it in "integer" right away, otherwise i need to cast it.

suggestions please.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绮烟 2024-10-05 08:29:47

最简单的答案是,因为您似乎知道它将是一个整数计数,所以使用sqlite3_column_int()将其读取为int。

也就是说,在放入 FMDB 后,您可能需要重构代码。从整数或浮点列中提取数据时,FMDB 将为您进行转换。在您的情况下, SELECT count(*) FROM myTable... 的结果将是整数类型的单列,并且 [resultSet valueForkey:@"count"] 将是一个 NSNumber 正如预期的那样。

The simplest answer, since it seems you know it's going to be an integer count, read it as an int with sqlite3_column_int().

That said, you may want to refactor your code after you drop in FMDB. FMDB will do the conversion for you when pulling data from integer or float columns. In your case, the result of a SELECT count(*) FROM myTable... would be a a single column of type integer and the [resultSet valueForkey:@"count"] will be an NSNumber as expected.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文