|
typedef struct sqlite3_stmt sqlite3_stmt;
这个对象的实例表示一个SQL语句。这个对象在不同地方可能会称为“预编译语句(prepared statement)”或“已编译SQL语句(compiled SQL statement)”或“语句(statement)”。
An instance of this object represents a single SQL statement.
This object is variously known as a "prepared statement" or a
"compiled SQL statement" or simply as a "statement".
一个语句对象的生命期大概是这样的:
The life of a statement object goes something like this:
更多信息,请参考上面每个方法的文档。
Refer to documentation on individual methods above for additional
information.
另行参见Objects、Constants和Functions的列表。
See also lists of
Objects,
Constants, and
Functions.