使用 Select 准备语句?可能的?
是否可以将准备好的语句与 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每次调用 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.