使用 Select 准备语句?可能的?

发布于 2024-09-15 18:39:18 字数 571 浏览 1 评论 0原文

是否可以将准备好的语句与 SELECT 命令一起使用?

我用 C++ 编写了以下代码:

sqlite3_bind_int(this->ppGetStmt, 1, id);

int rc = sqlite3_step(this->ppGetStmt);
//sqlite3_result_int(this->ppGetStmt, &value);

sqlite3_reset(this->ppGetStmt);

SQL 语句类似于以下 SELECT value FROM test WHERE id=?;
但是我怎样才能从语句中获取呢?

我查阅了 sqlite.org,但找不到任何有用的信息。

编辑:
解决方案可以在这里找到:http://www.sqlite.org/cintro.html 第 1.1 章。

is it possible to use prepared statements with the SELECT command?

I wrote in C++ following code:

sqlite3_bind_int(this->ppGetStmt, 1, id);

int rc = sqlite3_step(this->ppGetStmt);
//sqlite3_result_int(this->ppGetStmt, &value);

sqlite3_reset(this->ppGetStmt);

The SQL statement looks like following SELECT value FROM test WHERE id=?;.
But how can I get the value out of the statement?

I consult sqlite.org, but can't find any helpful informations.

EDIT:
Solution can found here: http://www.sqlite.org/cintro.html chapter 1.1.

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

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

发布评论

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

评论(1

许一世地老天荒 2024-09-22 18:39:18

每次调用 sqlite3_step() 并收到 SQLITE_ROW 返回值后,您可以使用列访问函数来获取您的值。

After each call to sqlite3_step() for which you receive a SQLITE_ROW return value, you use the column access functions to get your values out.

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