You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
268 B

2 years ago
import sqlite3
2 years ago
class Connection():
2 years ago
2 years ago
def __init__(self):
self._conn = sqlite3.connect("jeu.db")
self.db = self._conn.cursor()
2 years ago
2 years ago
def commit(self):
self._conn.commit()
def close(self):
self.commit()
self._conn.close()