mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-12-23 08:21:09 +00:00
6 lines
129 B
Python
6 lines
129 B
Python
import limbo
|
|
|
|
con = limbo.connect("sqlite.db")
|
|
cur = con.cursor()
|
|
res = cur.execute("SELECT * FROM users")
|
|
print(res.fetchone())
|