We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a31d205 commit 65df5edCopy full SHA for 65df5ed
src/shell.c
@@ -3200,7 +3200,13 @@ int main(int argc, char **argv){
3200
char *zHistory = 0;
3201
int nHistory;
3202
printf(
3203
+/* BEGIN SQLCIPHER */
3204
+#ifdef SQLITE_HAS_CODEC
3205
+ "SQLCipher version %s %.19s\n" /*extra-version-info*/
3206
+#else
3207
"SQLite version %s %.19s\n" /*extra-version-info*/
3208
+#endif
3209
+/* END SQLCIPHER */
3210
"Enter \".help\" for instructions\n"
3211
"Enter SQL statements terminated with a \";\"\n",
3212
sqlite3_libversion(), sqlite3_sourceid()
0 commit comments