MCPcopy Create free account
hub / github.com/aui-framework/aui / shellDatabaseError

Function shellDatabaseError

aui.sqlite/3rdparty/sqlite3/shell.c:15049–15053  ·  view source on GitHub ↗

** Print the current sqlite3_errmsg() value to stderr and return 1. */

Source from the content-addressed store, hash-verified

15047** Print the current sqlite3_errmsg() value to stderr and return 1.
15048*/
15049static 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

Callers 1

do_meta_commandFunction · 0.85

Calls 1

utf8_printfFunction · 0.85

Tested by

no test coverage detected