-
Notifications
You must be signed in to change notification settings - Fork 0
/
CRUD.js
61 lines (46 loc) · 1.01 KB
/
CRUD.js
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
// Hacer CRUD con POO
// Importar modulo
const sqlite3 = require("sqlite3").verbose();
class CRUD{
constructor(bbddUrl) {
this.bbddUrl = bbddUrl;
this.bbdd = null;
}
conectarBBDD() {
this.bbdd = new sqlite3.Database(this.bbddUrl);
}
instruccion(consulta) {
this.instruccionConsulta = consulta;
}
crearEInsertar() {
// Crear tabla e insertar datos
this.bbdd.serialize(() => {
this.bbdd.run(this.instruccionConsulta, (err) => {
if (err) {
console.error("Error al ejecutar consulta", err.message);
} else{
console.log("Consulta ejecutada exitosamente");
}
});
});
}
borrarYActualizar() {
// Borrar y actualizar
this.bbdd.run(this.instruccionConsulta);
}
mostrarDatos() {
this.bbdd.all(this.instruccionConsulta, (err, datos) => {
if (err) {
console.error("Hubo un error");
return;
}
// Resultado
console.log("Datos:", datos);
});
}
cerrarBBDD() {
this.bbdd.close();
}
}
// Exportar la clase
module.exports = CRUD;