596 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
163
views
Connect to SQLCipher encrypted SQLite database with Rider's built-in plugin
I'm trying to connect to my database through Rider but it doesn't work since I encrypted my database with SQLCipher. Tutorials say I should add these fields in the "Advanced" tab but that ...
1
vote
1
answer
125
views
sqlcipher_page_cipher aftre sqlite3_key()... with includet sqlite3 sqlcipher
I integrated sqlite to my project with help library #include <sqlite3.h>... Open and Connect work correct... next example my code:
#include <sqlite3.h>
int callback(void *notUsed, int ...
0
votes
0
answers
105
views
Open DB browser For SQLCipher by command line
We use SQLite and, more recently, the encrypted version with SQLCipher.
It works well with our software, but I'm having a small problem using DB Browser for SQLCipher. This software works well, but it ...
0
votes
1
answer
119
views
Entity Framework Core and SQLite: 'attempt to write a readonly database'
I am migrating a Xamarin app to MAUI and I had issue with the database.
I have two database plaintext and encrypted, if add password to my app plaintext transform to encrypted and if I remove password ...
0
votes
0
answers
22
views
TypeORM SQLCipher support in react-native apps
I was wondering if anyone knew whether TypeORM supports sqlcipher in react-native apps?
I've seen in TypeORM's changelog that such support exists but could not find any documentation backing that.
0
votes
0
answers
135
views
android.database.sqlite.SQLiteException: file is not a database: , while compiling: select count(*) from sqlite_master;
I am working with SQLCipher to encrypt my database in my Android app, but I am facing an issue where I cannot open the database using the correct passphrase. When I attempt to query the database, I ...
0
votes
1
answer
131
views
Two identical SQLiteExceprion in one line
I have two identical errors in one line using SQLCipher.
I am checking the password for correctness. If the parameter is entered incorrectly, two exceptions occur.
I looked at this page to see if the ...
1
vote
1
answer
797
views
I have a problem with sqlcipher.bundle (Multiple commands produce) in my flutter iOS app
So I have a flutter app and when I debug it on my iPhone it works perfectly but when I try to build an ipa file it shows me this error:
Which indicates that there are multiple commands which are ...
1
vote
0
answers
248
views
Crash while migrating from net.zetetic:android-database-sqlcipher:3.5.9 to 4.5.4
I am migrating from net.zetetic:android-database-sqlcipher:3.5.9 to 4.5.4 on my Android project.
Here is the given code before update:-
public class DatabaseHelper extends SQLiteOpenHelper {
...
1
vote
1
answer
75
views
SQLCipher C++ API version
I need SQLCipher version 4.x for my C++ project. I do have SQLCipher 4.6.0 Community in my Ubuntu, but it shows 3.4.1 in my C++ program. I have tried to compile and use SQLCipher 4.6.0 and 4.6.1 for ...
0
votes
1
answer
133
views
Using singleton DbContext causes connection issues in multithreaded environment
I am using SQLCipher for sqlite DB encryption in WPF application. As per knowledge they recommend to use Singleton pattern for my DbContext class ensure a single instance is used throughout my ...
0
votes
0
answers
292
views
SQLCipher "file is not a database" Error After Updating iOS App
I'm encountering an issue with SQLCipher in my iOS app after updating to a new version, which involves different workspaces of my app. The app uses SQLCipher(version: 3.1) to manage an encrypted ...
0
votes
0
answers
50
views
how can i connect to the sqlcipher file like 'D:/db.db3' in java,not android
I have a sqlcipher file locally, which is encrypted. How can I connect to it and dosomthing using java code? like execute sql,I tried a lot, but all failed.
I try this, but failed
<dependency>
...
0
votes
0
answers
225
views
Compiling and linking SQLCipher (SQLite) properly with ICU extension enabled
I'm trying to build SQLCipher from source and link it to another project as a static library.
The configuration I use (mostly according to this topic). I obtain all necessary flags by executing "...
0
votes
0
answers
368
views
Unable to Open SQLCipher-Encrypted SQLite Database in DB Browser for SQLite
I'm working on a C# application that encrypts an SQLite database using SQLCipher. I'm able to encrypt the database and access it in my application using the correct password. However, when I try to ...