Lines Matching refs:fatal_error
120 static void fatal_error(const char *zMsg, ...){ in fatal_error() function
346 fatal_error("unknown option: \"%s\"\n" in main()
355 fatal_error("surplus argument: \"%s\"\n", argv[i]); in main()
368 fatal_error("Cannot open database file: %s\n", zDbName); in main()
373 fatal_error("Could not open input file \"%s\"\n", zFileToRead); in main()
377 fatal_error("The --all mode cannot be used with stdin\n"); in main()
406 fatal_error("Could not clean up prior iteration\n"); in main()
414 fatal_error("Could not start a transaction\n"); in main()
424 if( zSql==0 ) fatal_error("out of memory\n"); in main()
426 if( rc ) fatal_error("Could not create the wordcount table: %s.\n", in main()
435 if( rc ) fatal_error("Could not prepare the SELECT statement: %s\n", in main()
442 if( rc ) fatal_error("Could not prepare the SELECT statement: %s\n", in main()
447 if( rc ) fatal_error("Could not prepare the INSERT statement: %s\n", in main()
454 if( rc ) fatal_error("Could not prepare the UPDATE statement: %s\n", in main()
461 if( rc ) fatal_error("Could not prepare the INSERT statement: %s\n", in main()
468 if( rc ) fatal_error("Could not prepare the INSERT statement: %s\n", in main()
476 if( rc ) fatal_error("Could not prepare the REPLACE statement: %s\n", in main()
484 if( rc ) fatal_error("Could not prepare the UPSERT statement: %s\n", in main()
491 if( rc ) fatal_error("Could not prepare the DELETE statement: %s\n", in main()
506 fatal_error("DELETE failed: %s\n", sqlite3_errmsg(db)); in main()
516 fatal_error("UPDATE failed: %s\n", sqlite3_errmsg(db)); in main()
522 fatal_error("Insert failed: %s\n", sqlite3_errmsg(db)); in main()
526 fatal_error("SELECT failed: %s\n", sqlite3_errmsg(db)); in main()
537 fatal_error("INSERT failed: %s\n", sqlite3_errmsg(db)); in main()
545 fatal_error("UPDATE failed: %s\n", sqlite3_errmsg(db)); in main()