Type alias SqlRowAsObject

SqlRowAsObject: {
    [key: string]: any;
}

An SqlResult iterates over this type if SqlStatementOptions.returnRawResult is set to false (by default false) while SqlService.execute | executing an SQL query.

Keys are column names and values are values in the SQL row.

Type declaration

  • [key: string]: any

Generated using TypeDoc