** Print the current sqlite3_errmsg() value to stderr and return 1. */
| 15047 | ** Print the current sqlite3_errmsg() value to stderr and return 1. |
| 15048 | */ |
| 15049 | static int shellDatabaseError(sqlite3 *db){ |
| 15050 | const char *zErr = sqlite3_errmsg(db); |
| 15051 | utf8_printf(stderr, "Error: %s\n", zErr); |
| 15052 | return 1; |
| 15053 | } |
| 15054 | |
| 15055 | /* |
| 15056 | ** Compare the pattern in zGlob[] against the text in z[]. Return TRUE |
no test coverage detected