sqlcipher/sqlcipher-android-tests

Test code for PRAGMA cipher_migrate;

niloct opened this issue · 1 comments

Hello,

After some research on the web, I've found your repo test code for sqlcipher lib migration (i.e. which calls PRAGMA cipher_migrate;), and that helped me a lot. Thanks for it!

Then, I had a question on this line:

Couldn't it just be:

boolean status = false;

And then treat the rest of the method code to update this variable ?

ok, I've figured it out, compiler alerted that the variable had to be final, so your solution is a way to allow it to be changed inside the post hook.