Fresh start - excluded large ROM JSON files
This commit is contained in:
5
temp_db.py
Normal file
5
temp_db.py
Normal file
@@ -0,0 +1,5 @@
|
||||
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])
|
||||
Reference in New Issue
Block a user