-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathdbTesting.cjs
92 lines (83 loc) · 2.52 KB
/
dbTesting.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// // this file needs to run once on startup, then never again. dbRequests.cjs
// // should be used after for all requests to the database
// console.log("in dbTesting.cjs");
// const sqlite3 = require('sqlite3').verbose();
// // Open a database connection
// let db = new sqlite3.Database('./mydatabase.db', (err) => {
// if (err) {
// console.error('Error opening database', err.message);
// } else {
// console.log('Connected to the SQLite database.');
// }
// });
// // Create a table
// // db.run(`CREATE TABLE IF NOT EXISTS users (
// // id INTEGER PRIMARY KEY AUTOINCREMENT,
// // name TEXT,
// // age INTEGER
// // )`, (err) => {
// // if (err) {
// // console.error('Error creating table', err.message);
// // } else {
// // console.log('Table created successfully.');
// // }
// // });
// // Insert data into the table
// // const insertUser = (name, age) => {
// // db.run(`INSERT INTO users (name, age) VALUES (?, ?)`, [name, age], function (err) {
// // if (err) {
// // console.error('Error inserting data', err.message);
// // } else {
// // console.log(`A row has been inserted with rowid ${this.lastID}`);
// // }
// // });
// // };
// // Query data from the table
// const getUsers = () => {
// db.all(`SELECT * FROM users`, [], (err, rows) => {
// if (err) {
// console.error('Error querying data', err.message);
// } else {
// rows.forEach((row) => {
// console.log(`${row.id}: ${row.name} - ${row.age}`);
// });
// }
// });
// };
// // Update data in the table
// const updateUser = (id, age) => {
// db.run(`UPDATE users SET age = ? WHERE id = ?`, [age, id], function (err) {
// if (err) {
// console.error('Error updating data', err.message);
// } else {
// console.log(`Row(s) updated: ${this.changes}`);
// }
// });
// };
// // Delete data from the table
// const deleteUser = (id) => {
// db.run(`DELETE FROM users WHERE id = ?`, id, function (err) {
// if (err) {
// console.error('Error deleting data', err.message);
// } else {
// console.log(`Row(s) deleted: ${this.changes}`);
// }
// });
// };
// // Export functions
// module.exports = {
// insertUser,
// getUsers,
// updateUser,
// deleteUser
// };
// // Close the database connection
// process.on('SIGINT', () => {
// db.close((err) => {
// if (err) {
// console.error('Error closing database', err.message);
// } else {
// console.log('Database connection closed.');
// }
// });
// });