/*sql_exec(sqlite, "PRAGMA synchronous = OFF;");
sql_exec(sqlite, "PRAGMA journal_mode = DELETE;");
sql_exec(sqlite, "PRAGMA temp_store = MEMORY;");*/
sql_exec(sqlite, "PRAGMA page_size = 4096;");
sql_exec(sqlite, "PRAGMA page_size = %d;", getpagesize());
sql_exec(sqlite, "PRAGMA cache_size = 10000;");
rc = pkgdb_transaction_begin(sqlite, "REPO");