From e2418462bac9bddaca76dfcb3c058508f9c8455d Mon Sep 17 00:00:00 2001 From: anon Date: Wed, 2 Aug 2023 20:55:35 +0200 Subject: [PATCH] place sql statements in sep header --- include/stmt.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 include/stmt.h diff --git a/include/stmt.h b/include/stmt.h new file mode 100644 index 0000000..2a8d78b --- /dev/null +++ b/include/stmt.h @@ -0,0 +1,16 @@ +static sqlite3_stmt* remind_stmt; +static const char remind_stmt_template[] = + "SELECT " + "title," + "body," + "difficulty," + "repo_link," + "trigger_date," + "started DATE," + "span" + " FROM assignment INNER JOIN project on assignment.project = project.rowid " + "WHERE who = ?;" +; + +#define stmt_prepare(stmt) \ + sqlite3_prepare_v2(connection, stmt ## _template, -1, &stmt, NULL)