Better-sqlite3 BigInt基本类型:修订历史

跳到导航 跳到搜索

差异选择:选中要对比的版本的单选按钮,按Enter键或下方的按钮。
说明:(当前)=与最后版本之间的差异,(之前)=与上一版本之间的差异,=小编辑。

2024年1月15日 (星期一)

  • 当前之前 10:182024年1月15日 (一) 10:18BrainBs 讨论 贡献 3,092字节 +3,092 创建页面,内容为“ SQLite3 可以存储64位有符号整数,这用 JavaScript 的 [https://en.wikipedia.org/wiki/Double-precision_floating-point_format number format] 无法完全表示。为了支持这种数据类型,<code>better-sqlite3</code> 与 [https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt BigInts] 完全兼容。 <syntaxhighlight lang="js">const big = BigInt('1152735103331642317'); big === 1152735103331642317n; // 返回 tru…”