Compare commits

...

2 Commits

Author SHA1 Message Date
370294ddb8 fix get_nth_id sql 2023-08-03 14:32:52 +02:00
e8f3cf6014 partial fix tab/space inconsistency 2023-08-03 14:32:36 +02:00
2 changed files with 6 additions and 7 deletions

View File

@ -30,8 +30,7 @@ static const char dump_stmt[] =
static sqlite3_stmt* get_nth_id_stmt; static sqlite3_stmt* get_nth_id_stmt;
static const char get_nth_id_stmt_template[] = static const char get_nth_id_stmt_template[] =
"SELECT rowid " "SELECT rowid "
"FROM projects " "FROM project "
"WHERE"
"LIMIT 1 " "LIMIT 1 "
"OFFSET ?;" "OFFSET ?;"
; ;