小巧、快速、可靠。
三者选其二。

SQLite C 接口

查询预处理语句的 EXPLAIN 设置

int sqlite3_stmt_isexplain(sqlite3_stmt *pStmt);

如果预处理语句 S 是 EXPLAIN 语句,则 sqlite3_stmt_isexplain(S) 接口返回 1;如果语句 S 是 EXPLAIN QUERY PLAN,则返回 2。如果 S 是普通语句或 NULL 指针,则 sqlite3_stmt_isexplain(S) 接口返回 0。

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