dyedgreen / deno-sqlite

Deno SQLite module
https://deno.land/x/sqlite
MIT License
409 stars 36 forks source link

Password protected DB #154

Closed konuch closed 3 years ago

konuch commented 3 years ago

Hello, does this library support password protection of SQLite DB? I haven’t found anything about it in the docs. Thanks in advance

dyedgreen commented 3 years ago

The built in encryption capabilities of SQLite are a payed extension and as such not available publicly. If you need to use it with Deno, you will need to purchase it from the SQLite developers directly and compile a custom version of the WASM module yourself. See: https://www.sqlite.org/support.html

konuch commented 3 years ago

Thanks for clarification. 👍