First look

This commit is contained in:
florianuhlig
2025-10-02 23:36:57 +02:00
parent 8c8856fc07
commit 4f663eb8a5
8 changed files with 75 additions and 3 deletions

10
sqlLite/get.py Normal file
View File

@@ -0,0 +1,10 @@
import sqlite3
from . import db_name
def get_user():
conn = sqlite3.connect(db_name)
cursor = conn.cursor()
cursor.execute('select * from T_USERS')
rows = cursor.fetchall()
for row in rows:
print(row)