déja ca a fix le problème de lancement je pense

This commit is contained in:
piair
2023-08-25 11:43:09 +02:00
parent bfab01a1a3
commit 79e6d9053e
5 changed files with 15 additions and 38 deletions

View File

@ -1,7 +1,6 @@
import sqlite3
#Create a new row, for the account [compte] whith [points] points
#SQLITE
def add_row(compte, points, mycursor, mydb):
sql = "INSERT INTO daily (compte, points, date) VALUES (?, ?, date())"
val = (compte, points)
@ -11,7 +10,6 @@ def add_row(compte, points, mycursor, mydb):
#update the ammount of points for the account [compte]
#SQLITE
def update_row(compte, points, mycursor, mydb):
sql = f"UPDATE daily SET points = {points} WHERE compte = '{compte}' AND date = date() ;"
mycursor.execute(sql)