- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.js
More file actions
Latest commit
47 lines (40 loc) · 1.52 KB
/
Copy pathexample.js
File metadata and controls
47 lines (40 loc) · 1.52 KB
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
// https://github.com/BaseMax/edb-sqlite-nodejs
constdatabase=require(`./database`)
// open
database.open(`database.db`)
// create table
database.run(`CREATE TABLE IF NOT EXISTS 'record'
(
ID INTEGER PRIMARY KEY NOT NULL,
meetingId CHAR(70) NOT NULL,
recordId CHAR(70) NOT NULL,
status INTEGER NOT NULL
)`)
// insert
database.insert(`INSERT INTO record(meetingId, recordId, status) VALUES(?, ?, ?)`,[1000,50505050,1])
database.insert(`INSERT INTO record(meetingId, recordId, status) VALUES(?, ?, ?)`,[5000,45678050,1])
database.insert(`INSERT INTO record(meetingId, recordId, status) VALUES(?, ?, ?)`,[8000,505,0])
database.insert(`INSERT INTO record(meetingId, recordId, status) VALUES(?, ?, ?)`,[9400,564567,0])
database.insert(`INSERT INTO record(meetingId, recordId, status) VALUES(?, ?, ?)`,[3400,9949494,2])
// selects
database.selects(`SELECT * FROM record WHERE status = 0 ORDER BY ID ASC LIMIT 5`,[],
(rows)=>{
console.log(rows)
for(letrowofrows){
console.log(row)
}
})
// select
database.select(`SELECT * FROM record WHERE meetingId = ? AND recordId = ?`,[5,8],(res)=>{
console.log(res)
})
// select COUNT
database.select(`SELECT COUNT(*) as count FROM record WHERE meetingId = ? AND recordId = ?`,[5,8],(res)=>{
if(res[`count`]){
console.log(res[`count`])
}else{
console.log(`Error: ${res}`)
}
})
// close
database.close()