Cheng Liang

Results 40 comments of Cheng Liang

Could you please make a pull request to fix this problem?

I mean if you could make a pull request about what you change? Just add `macos { QMAKE_CFLAGS += -march=native } QMAKE_CFLAGS += -maes` to `sqlitecipher/sqlitecipher.pro` is enough?

Thank you. And yes I know this *bug*. In fact, `QSQLITE_CREATE_KEY` has two phases: first it *open* database then *create password* to this databse file. Some pseudo-code as following: ```c++...

The newest version (v1.1) of this plugin QtCipherSqlitePlugin does support SQLCipher. But I believe you need try the following connection options: ``` dbconn.setConnectOptions("QSQLITE_USE_CIPHER=sqlcipher; SQLCIPHER_LEGACY=1"); ``` That's because current version of...

I have tested as you said. First created key using plugin then close Qt application. When I opened the database generated by the plugin with SQLiteDatabaseBrowser, DBBrowser required password. So...

Thank you for your reply. I could comfirm this problem. Here is some solution. First, you have some incorrect code: ```c db.open(); if (!db.isOpen()) { qDebug() access, "cipher", CODEC_TYPE_SQLCIPHER); const...

Please checkout latest master branch to test if it is OK for Qt 6.0

Sorry for such mistake. I have fixed a bug about `qMakeError` function, please checkout develop branch. PS: I didn't compile it using Android SDK so I'm not sure if there...

Sorry for no reply for such a long time. I think you misunderstand `connectOptions`. `connectOptions` should be set before `QSqlDatabase::open()`. You could think it is the options for connecting (opening)...