Files
openclaw-workspace/temp_db.py
2026-04-11 09:45:12 -05:00

6 lines
204 B
Python

import sqlite3
conn = sqlite3.connect(r'C:/Users/admin/.openclaw/memory.db')
cur = conn.cursor()
cur.execute('SELECT name FROM sqlite_master WHERE type=\'table\'')
for r in cur.fetchall(): print(r[0])