-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Connect to a Encrypted DB by C# System.Data.Sqlite #162
Comments
2 years later... Maybe you can use the SQLite.Interop.dll and rename it to sqlite3.dll and move it to the system folder. Then compile go-sqlite3 with the parameters to use the installed SQLite library: Remember that you must to use a |
This library is a binding between SQLite3 and Golang, in order to open a encrypted Sqlite3 you have to use SQLCipher. There are multiple golang bindings for it. See: https://github.com/xeodou/go-sqlcipher Can this be closed ? |
The |
No, it is part of SQLite. It is just only enabled with additional code. And System.Data.SQLite also has support for encryption as well as LiteReplica and LiteSync |
Would be great if this library has encryption @mattn is working on it on the |
Hello there, I have an application that's written on C# that has an sqlite db, encrypted by System.Data.Sqlite, the connection string is:
Now I'm working on re-write the app using go-sqlite3, using:
But I've got this error:
It's possibly to use my encrypted db ?
Thanks !
The text was updated successfully, but these errors were encountered: