X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.db-live.git;a=blobdiff_plain;f=yarrg%2Frssql.c;h=23b3bd04af68ff56033d754a1dca60349797fe08;hp=26a77bb7811dd0be8fc504037a86b8a06f44a20d;hb=3ce667a2d3fd7c36f60da86bb59071264790e375;hpb=2abd3537af0c697684bfb97895f230372101329d diff --git a/yarrg/rssql.c b/yarrg/rssql.c index 26a77bb..23b3bd0 100644 --- a/yarrg/rssql.c +++ b/yarrg/rssql.c @@ -7,6 +7,7 @@ sqlite3_stmt *ss_ipair; int islandtablesz; DEBUG_DEFINE_DEBUGF(sql); +DEBUG_DEFINE_SOME_DEBUGF(sql,debug2f); static int busy_handler(void *u, int previous) { debugf("[[DB BUSY %d]]",previous); @@ -44,7 +45,7 @@ void sql_fatal(const char *stmt_what, int sqr, const char *act_what) { void sql_bind(sqlite3_stmt *ss, int index, int value, const char *ss_what, const char *val_what) { - debugf("SQL BIND %s #%d = %d = %s\n", ss_what, index, value, val_what); + debug2f("SQL BIND %s #%d = %d = %s\n", ss_what, index, value, val_what); int sqr= sqlite3_bind_int(ss, index, value); if (sqr) sql_fatal(ss_what, sqr, masprintf("bind #%d (%s)", index, val_what)); @@ -84,10 +85,10 @@ int sql_step(sqlite3_stmt *ssh, const char *ssh_string, sqr= sqlite3_step((ssh)); switch (sqr) { case SQLITE_DONE: - debugf("SQL %s DONE\n",ssh_string); + debug2f("SQL %s DONE\n",ssh_string); return 0; case SQLITE_ROW: - if (DEBUGP(sql)) { + if (DEBUGP(sql2)) { int i; fprintf(debug,"SQL %s R",ssh_string); for (i=0; i