Skip to content

Commit

Permalink
fix: add the enableArithAbort option to the sql server connection opt…
Browse files Browse the repository at this point in the history
…ion typings (#5526)
  • Loading branch information
mwiedmann committed Feb 17, 2020
1 parent 26ce6bc commit d19dbc6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/driver/sqlserver/SqlServerConnectionOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,11 @@ export interface SqlServerConnectionOptions extends BaseConnectionOptions, SqlSe
* The versions are available from require('tedious').TDS_VERSION. (default: 7_4).
*/
readonly tdsVersion?: string;

/**
* A boolean, that when true will abort a query when an overflow or divide-by-zero error occurs during query execution.
*/
readonly enableArithAbort?: boolean
};

/**
Expand Down

0 comments on commit d19dbc6

Please sign in to comment.