Skip to main content

Module describe_table_tool

Module describe_table_tool 

Source
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§

ColumnInfo
Metadata for a single column in a table, as reported by SQLite’s PRAGMA table_info.
DescribeTableInput
The input parameters for the describe_table tool.
DescribeTableOutput
The result of describing a table’s columns.
DescribeTableTool
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§

DescribeTableError
Errors specific to the describe_table tool.