aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Armstrong <jeff@approximatrix.com>2021-09-14 13:53:58 -0400
committerJeffrey Armstrong <jeff@approximatrix.com>2021-09-14 13:53:58 -0400
commita60168c9376bff59ffd6cdd137ab7b7642cdce27 (patch)
tree1a5e82328da62f6f5ac4ef87c0b591b73d9a044c
parent9d52e278a973b26d4ea95451327fd4c80310afed (diff)
downloadlevitating-a60168c9376bff59ffd6cdd137ab7b7642cdce27.tar.gz
levitating-a60168c9376bff59ffd6cdd137ab7b7642cdce27.zip
Fixed insert-update statement for acknowledging checkins
-rw-r--r--captain/db.f903
1 files changed, 2 insertions, 1 deletions
diff --git a/captain/db.f90 b/captain/db.f90
index 448c17d..42f1bfc 100644
--- a/captain/db.f90
+++ b/captain/db.f90
@@ -1210,7 +1210,8 @@ contains
call date_and_time(values=right_now)
if(stmt%prepare(db, &
- "INSERT OR UPDATE INTO checkin(player, year, month, day, hour, minute, second, platform) VALUES(?, ?, ?)") &
+ "INSERT OR UPDATE INTO checkin(player, year, month, day, hour, minute, second, platform)" &
+ //" VALUES(?, ?, ?, ?, ?, ?, ?, ?)") &
== SQLITE_OK) &
then
if(stmt%bind_int(1, player) == SQLITE_OK .AND. &