You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*`bigNumberStrings`: Enabling both `supportBigNumbers` and `bigNumberStrings` forces big numbers
230
230
(BIGINT and DECIMAL columns) to be always returned as JavaScript String objects (Default: `false`).
231
231
Enabling `supportBigNumbers` but leaving `bigNumberStrings` disabled will return big numbers as String
232
-
objects only when they cannot be accurately represented with [JavaScript Number objects] (http://ecma262-5.com/ELS5_HTML.htm#Section_8.5)
232
+
objects only when they cannot be accurately represented with [JavaScript Number objects] (https://tc39.es/ecma262/#sec-ecmascript-language-types-number-type)
233
233
(which happens when they exceed the [-2^53, +2^53] range), otherwise they will be returned as
234
234
Number objects. This option is ignored if `supportBigNumbers` is disabled.
235
235
*`dateStrings`: Force date types (TIMESTAMP, DATETIME, DATE) to be returned as strings rather than
0 commit comments