Browse Source

fix get_nth_id sql

pull/3/head
anon 10 months ago
parent
commit
370294ddb8
1 changed files with 3 additions and 4 deletions
  1. +3
    -4
      include/stmt.h

+ 3
- 4
include/stmt.h View File

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