Interface DescribeRowExperimental

interface DescribeRow {
    column_name: string;
    column_type: string;
    null?: string;
}

Properties

column_name: string
column_type: string
null?: string

DuckDB DESCRIBE emits YES / NO when nullability is known.