Initial commit: 商品售卖网站
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import sqlite3
|
||||
conn = sqlite3.connect('backend/sale.db')
|
||||
cursor = conn.cursor()
|
||||
cursor.execute("PRAGMA table_info(users)")
|
||||
print("Users table columns:")
|
||||
for col in cursor.fetchall():
|
||||
print(col)
|
||||
Reference in New Issue
Block a user