nodejs 操作sqlite3数据库
时间: 2023-04-26 16:06:25 浏览: 892
Nodejs操作Sqlite3数据库封装
3星 · 编辑精心推荐
Node.js可以使用sqlite3模块来操作SQLite数据库。以下是基本的步骤:
1. 安装sqlite3模块:在命令行中运行npm install sqlite3命令。
2. 在Node.js中引入sqlite3模块:const sqlite3 = require('sqlite3').verbose();
3. 打开数据库连接:const db = new sqlite3.Database('path/to/database.db');
4. 执行SQL语句:db.run('CREATE TABLE IF NOT EXISTS users (id INTEGER PRIMARY KEY, name TEXT)');
5. 查询数据:db.all('SELECT * FROM users', (err, rows) => { console.log(rows); });
6. 关闭数据库连接:db.close();
以上是基本的操作SQLite数据库的步骤,具体的操作可以根据需要进行调整。
阅读全文