Expand description
The describe_table tool: returns column metadata for a given table using
SQLite’s PRAGMA table_info. Useful for inspecting schema details before
writing queries.
Structs§
- Column
Info - Metadata for a single column in a table, as reported by SQLite’s
PRAGMA table_info. - Describe
Table Input - The input parameters for the
describe_tabletool. - Describe
Table Output - The result of describing a table’s columns.
- Describe
Table Tool - Describe the columns of a table. Returns each column’s name, type, whether it is NOT NULL, its default value, and whether it is part of the primary key. Useful for inspecting a table’s schema before writing queries.
Enums§
- Describe
Table Error - Errors specific to the
describe_tabletool.