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.
|
|
|
import sqlite3
|
|
|
|
|
|
|
|
class Connection():
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self._conn = sqlite3.connect("jeu.db")
|
|
|
|
self.db = self._conn.cursor()
|
|
|
|
|
|
|
|
def commit(self):
|
|
|
|
self._conn.commit()
|
|
|
|
|
|
|
|
def close(self):
|
|
|
|
self.commit()
|
|
|
|
self._conn.close()
|