Small. Fast. Reliable.
Choose any three.

SQLite C接口

具有给定名称的参数的索引

int sqlite3_bind_parameter_index(sqlite3_stmt *,const char * zName);

返回给定名称的SQL参数的索引。返回的索引值适合用作sqlite3_bind()的第二个参数。如果找不到匹配的参数,则返回零。即使原始语句是使用sqlite3_prepare16_v2()sqlite3_prepare16_v3()从UTF-16文本准备的,也必须在UTF-8中给出参数名称。

另请参见:sqlite3_bind()sqlite3_bind_parameter_count()sqlite3_bind_parameter_name()

另请参见 对象常量函数的列表