mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
7 lines
138 B
Python
7 lines
138 B
Python
import sqlite3
|
|||
|
|||
def query_safe():
|
|||
conn = sqlite3.connect(":memory:")
|
|||
conn.execute("CREATE TABLE t (id INTEGER)")
|
|||
conn.close()
|