我可以在sqlite3中使用表名的参数吗?

时间:2011-05-03 13:35:48

标签: c++ c parameters sqlite

我有一些奇怪的感觉,我想向你揭示sqlite3 参数

这是我的查询和失败消息:

#query
'SELECT id FROM ? WHERE key = ? AND (userid = '0' OR userid = ?) ORDER BY userid DESC LIMIT 1;'
#error message, fails when calling sqlite3_prepare()
error: 'near "?": syntax error'

在我的代码中看起来像:

// Query is a helper class, at creation it does an sqlite3_preprare()
Query q("SELECT id FROM ? WHERE key = ? AND (userid = 0 OR userid = ?) ORDER BY userid DESC LIMIT 1;");
// bind arguments
q.bindString(1, _db_name.c_str() ); // class member, the table name
q.bindString(2, key.c_str()); // function argument (std::string)
q.bindInt   (3, currentID); // function argument (int)
q.execute();

我觉得我不能使用sqlite 参数作为表名,但我在Sqlite3 C API中找不到确认。

你知道我的查询有什么问题吗? 在准备查询之前,是否必须预先处理我的SQL语句以包含表名

2 个答案:

答案 0 :(得分:9)

Ooookay,应该更加彻底地了解SO。

回答:
- SQLite Parameters - Not allowing tablename as parameter
- Variable table name in sqlite

它们适用于Python,但我想这同样适用于C ++。

<强> TL;博士

您无法将表名作为参数传递 如果有人在SQLite文档中有一个链接,我已经确认了这一点,我很乐意接受答案。

答案 1 :(得分:4)

我知道这已经超级旧了,但由于你的查询只是一个字符串,你总是可以在C ++中附加这样的表名:

std::string queryString = "SELECT id FROM " + std::string(_db_name);

或在Objective-C:

[@"SELECT id FROM " stringByAppendingString:_db_name];