@designliquido/lincones-sqlite
Version:
Implementação de LinConEs para SQLite.
82 lines • 3.19 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.ClienteSQLite = void 0;
const caminho = __importStar(require("node:path"));
const sqlite = __importStar(require("sqlite"));
const sqlite3_1 = __importDefault(require("sqlite3"));
class ClienteSQLite {
// Segundo a documentação, o método new sqlite3.Database()
// pode receber 3 formas de filename
// caminho do arquivo exemplo: /tmp/banco.db
// ":memory:" para criar um banco de dados em memória
// null para criar um banco de dados temporário
constructor(origemDados = null) {
this.caminhoRaiz = process.cwd();
this.origemDados = null;
if (origemDados !== ':memory:' && origemDados !== null) {
this.origemDados = caminho.join(this.caminhoRaiz, origemDados);
}
else {
this.origemDados = ':memory:';
}
}
async abrir() {
const database = await sqlite.open({
filename: this.origemDados,
driver: sqlite3_1.default.Database
});
this.instanciaBancoDeDados = database;
console.log('Conectado ao banco de dados SQLite.');
}
async executarComando(comando) {
if (comando.startsWith('SELECT')) {
return await this.executarComandoSelecao(comando);
}
return await this.instanciaBancoDeDados.run(comando, (erro) => {
if (erro) {
console.log(erro.message);
}
});
}
async executarComandoSelecao(comando) {
return await this.instanciaBancoDeDados.all(comando);
}
}
exports.ClienteSQLite = ClienteSQLite;
//# sourceMappingURL=cliente-sqlite.js.map