I'm working on a project using node.js.
I need to use a local database, but I wanted to reconcile performance with security, and if possible, portability as well.
I only know MS Access (.accdb) and Sqlite3.
[MS ACCESS]
Prós: Senha
Contras: Lento, Tem que instalar o Microsoft JET (pois com ODBC é mais lento ainda)
Plataforma: Windows
[SQLITE3]
Prós: Rápido, Não precisa instalar nada (o node.js suporta por padrão)
Contras: Não tem como colocar senha
Plataforma: Várias
OBS: Poderia criptografar os dados, mas um SELECT com 5 mil dados demoraria um pouco
pra descriptografar cada campo dos registros.
Does anyone know of any other local database that I can use, and if possible do not need to install anything on the computer (at most one module on node.js), and that works at least on Windows and Linux?
I saw Firebird in the benchmark it was very fast, but I did not understand if it is local, because I saw an example that is the path of the file, but it also had an IP. Could anyone talk more about it?
Thank you.