Adjust SQLITE_NOTADB text message

This commit is contained in:
Nick Parker 2017-09-27 16:13:21 -05:00
parent be789e94dd
commit 6a7894b990

View File

@ -1435,7 +1435,7 @@ const char *sqlite3ErrStr(int rc){
/* SQLITE_AUTH */ "authorization denied",
/* SQLITE_FORMAT */ 0,
/* SQLITE_RANGE */ "column index out of range",
/* SQLITE_NOTADB */ "file is not a database",
/* SQLITE_NOTADB */ "file is encrypted or is not a database",
};
const char *zErr = "unknown error";
switch( rc ){