小巧。快速。可靠。
三选一。

SQLite C 接口

具有给定名称的参数索引

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

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

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

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