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>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.44.1.0</version>
</dependency>
Help me!
-
You can try to use some open source tools and try to see if you can connect properly before you continue with what you are doing later.user13776577– user137765772024年06月04日 09:04:47 +00:00Commented Jun 4, 2024 at 9:04
-
SQLCipher for JDBC: zetetic.net/sqlcipher/jdbcStephen Lombardo– Stephen Lombardo2024年06月05日 15:07:14 +00:00Commented Jun 5, 2024 at 15:07
default