-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexecucao.ts
33 lines (27 loc) · 1013 Bytes
/
execucao.ts
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
import * as leituraLinhas from 'readline';
import { LinconesSQLite } from "./fontes/lincones-sqlite";
const lincones = new LinconesSQLite();
lincones.clienteSQLite.abrir().then(() => {
const interfaceLeitura = leituraLinhas.createInterface({
input: process.stdin,
output: process.stdout,
prompt: '\nlincones> ',
});
interfaceLeitura.prompt();
interfaceLeitura.on('line', (linha: string) => {
lincones.executar(linha).then(resultado => {
if (resultado.linhasRetornadas.length > 0) {
console.table(resultado.linhasRetornadas);
}
console.log(resultado.mensagemExecucao);
if (resultado.ultimoId) {
console.log(`ID retornado pela operação: ${resultado.ultimoId}`);
}
return Promise.resolve();
}).then(() => {
interfaceLeitura.prompt();
}).catch((erro) => {
console.error(erro);
});
});
});