Expand description
The explain_query tool: returns the EXPLAIN QUERY PLAN output for a SQL
statement, showing how SQLite will execute the query.
Structs§
- Explain
Query Input - The input parameters for the
explain_querytool. - Explain
Query Output - The result of explaining a SQL query’s execution plan.
- Explain
Query Tool - Show the query execution plan for a SQL statement. Returns the EXPLAIN QUERY PLAN output showing how SQLite will scan tables, use indexes, and join data.
- Plan
Node - A single node in the EXPLAIN QUERY PLAN output tree.
Enums§
- Explain
Query Error - Errors specific to the
explain_querytool.