From a4a455f923aca07d88a26c5010d13f24a8dca0df Mon Sep 17 00:00:00 2001 From: ManuelW Date: Sat, 11 May 2024 09:56:39 +0200 Subject: [PATCH] DB config --- insertLoading.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/insertLoading.py b/insertLoading.py index 82934fe..a2faa04 100644 --- a/insertLoading.py +++ b/insertLoading.py @@ -51,7 +51,7 @@ def updateLast(cursor): ## hole alle Fahrten nach letzter Ladung sql = ''' - SELECT d_total_distance, d_total_ascent, d_avg_speed FROM bike_drives WHERE d_date >= row[1]; + SELECT d_total_distance, d_total_ascent, d_avg_speed FROM bike_drives WHERE d_date >= ?, (row[1]); ''' cursor.execute(sql) rows = cursor.fetchall()