.Dd January 24, 2024 .Dt SQLITE3_STMT_ISEXPLAIN 3 .Os .Sh NAME .Nm sqlite3_stmt_isexplain .Nd query the EXPLAIN setting for a prepared statement .Sh SYNOPSIS .In sqlite3.h .Ft int .Fo sqlite3_stmt_isexplain .Fa "sqlite3_stmt *pStmt" .Fc .Sh DESCRIPTION The sqlite3_stmt_isexplain(S) interface returns 1 if the prepared statement S is an EXPLAIN statement, or 2 if the statement S is an EXPLAIN QUERY PLAN. The sqlite3_stmt_isexplain(S) interface returns 0 if S is an ordinary statement or a NULL pointer. .Sh IMPLEMENTATION NOTES These declarations were extracted from the interface documentation at line 4417. .Bd -literal SQLITE_API int sqlite3_stmt_isexplain(sqlite3_stmt *pStmt); .Ed