2025.39 changes

This commit is contained in:
2025-09-28 18:02:33 +02:00
parent 81d329278e
commit 3ee8e3e7c2
8 changed files with 25 additions and 18 deletions

View File

@@ -29,7 +29,7 @@ Pour travailler sur notre première base de données, nous allons découper l'ex
```python {.numberLines}
import sqlite3
connection = sqlite3.connect("intro.sqlite3", isolation_level=None)
connection = sqlite3.connect("intro.sqlite3", autocommit=True)
connection.close()
```