Issue warning for deprecated PRAGMA cipher command
This commit is contained in:
parent
ac840a9ae0
commit
bc9fda6b26
|
@ -144,6 +144,10 @@ int sqlcipher_codec_pragma(sqlite3* db, int iDb, Parse *pParse, const char *zLef
|
||||||
if(ctx) {
|
if(ctx) {
|
||||||
if( zRight ) {
|
if( zRight ) {
|
||||||
sqlcipher_codec_ctx_set_cipher(ctx, zRight, 2); // change cipher for both
|
sqlcipher_codec_ctx_set_cipher(ctx, zRight, 2); // change cipher for both
|
||||||
|
char *pragma_cipher_deprecated_msg = "PRAGMA cipher command is deprecated, please remove from usage.";
|
||||||
|
codec_vdbe_return_static_string(pParse, "cipher", pragma_cipher_deprecated_msg);
|
||||||
|
sqlite3_log(SQLITE_WARNING, pragma_cipher_deprecated_msg);
|
||||||
|
return SQLITE_ERROR;
|
||||||
}else {
|
}else {
|
||||||
codec_vdbe_return_static_string(pParse, "cipher",
|
codec_vdbe_return_static_string(pParse, "cipher",
|
||||||
sqlcipher_codec_ctx_get_cipher(ctx, 2));
|
sqlcipher_codec_ctx_get_cipher(ctx, 2));
|
||||||
|
|
Loading…
Reference in New Issue