DuckDB Terminal - v0.2.0
    Preparing search index...

    Interface SQLError

    SQL error information from DuckDB's sql_error_message() function

    interface SQLError {
        errorSubtype: string;
        exceptionMessage: string;
        exceptionType: string;
        position: string;
    }
    Index

    Properties

    errorSubtype: string

    Additional error subtype information

    exceptionMessage: string

    The error message

    exceptionType: string

    Type of exception (e.g., "Parser", "Binder")

    position: string

    Position in the SQL string where the error occurred