Skip to content

Is it possible to open with this library a sqlite database that has a password? ( I have the password) #1619

@RodrigoBJJ94

Description

@RodrigoBJJ94

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)

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions