### Summary const sqlite3 = require('sqlite3'); const sqlite = require('sqlite');async function main() { try { const db = await sqlite.open({ filename: './LocalData.db', driver: sqlite3.Database }); const rows = await db.all('SELECT * FROM ProductionData'); console.log(rows); await db.close(); } catch (error) { console.log(error); } } main(); ### Proposed implementation Is it possible to open with this library a sqlite database that has a password? ( I have the password)