I have an electron-angular-node project which has few tables. I am using :
- electron version: 13.1.7
- Angular CLI: 12.0.2
- Node: 16.17.0
- Package Manager: npm 9.2.0
- OS version: Windows 10
- better-sqlite3: 7.4.6
I need to protect the DB file in case anybody wants to change data from the db. I wants to lock it using some password and at the same time application should be able to use DB when needed.
My main question is:
Is it possible to password protect a better-sqlite3 DB file. I'm searching for some free open source solution.