diff options
author | Jeffrey Armstrong <jeff@approximatrix.com> | 2021-09-14 13:53:58 -0400 |
---|---|---|
committer | Jeffrey Armstrong <jeff@approximatrix.com> | 2021-09-14 13:53:58 -0400 |
commit | a60168c9376bff59ffd6cdd137ab7b7642cdce27 (patch) | |
tree | 1a5e82328da62f6f5ac4ef87c0b591b73d9a044c /captain | |
parent | 9d52e278a973b26d4ea95451327fd4c80310afed (diff) | |
download | levitating-a60168c9376bff59ffd6cdd137ab7b7642cdce27.tar.gz levitating-a60168c9376bff59ffd6cdd137ab7b7642cdce27.zip |
Fixed insert-update statement for acknowledging checkins
Diffstat (limited to 'captain')
-rw-r--r-- | captain/db.f90 | 3 |
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. & |