nodejs/lib/sqlite.js
James M Snell 62ba6196d4 sqlite: cleanup ERM support and export Session class
Update sqlite Session to support Symbol.dispose and
move the definition of the dispose methods to c++ to
close the open TODO

PR-URL: https://github.com/nodejs/node/pull/58378
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
2025-05-30 17:21:30 -07:00

7 lines
157 B
JavaScript

'use strict';
const { emitExperimentalWarning } = require('internal/util');
emitExperimentalWarning('SQLite');
module.exports = internalBinding('sqlite');