prorm API Reference
    Preparing search index...

    Interface QueryError

    Raised when the database rejects a statement; carries the driver's own error alongside the SQL that produced it.

    interface QueryError {
        parent?: Error;
        original?: Error;
        sql?: string;
        parameters?: any[];
    }

    Hierarchy

    • Error
      • QueryError
    Index
    parent?: Error
    original?: Error
    sql?: string
    parameters?: any[]