7 lines
274 B
Python
7 lines
274 B
Python
import sqlite3
|
|
conn = sqlite3.connect(r\"C:/Users/admin/.openclaw/memory.db\")
|
|
cursor = conn.cursor()
|
|
cursor.execute(\"SELECT name FROM sqlite_master WHERE type=chr(39)+chr(116)+chr(97)+chr(98)+chr(108)+chr(101)+chr(39)\")
|
|
for row in cursor.fetchall():
|
|
print(row[0])
|