aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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. &