node/lib/sqlite.js
James M Snell 0fe53375ec
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-09-24 09:03:46 +02:00

6 lines
157 B
JavaScript

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