I am using SQLite Database in C# and trying to encrypt it but when I am setting the Password in Connection.SetPassword it is giving me above error.
connection.SetPassword("12345");
trans=connection.BeginTransaction();
I am getting the error on BeginTransaction() method.
Is there any way to resolve it and set password successfully to SQLite Database.