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

7 lines
201 B
Python

import sqlite3
conn = sqlite3.connect(r'C:\Users\admin\.openclaw\cron.db')
c = conn.cursor()
c.execute('''SELECT name FROM sqlite_master WHERE type=''table''''')
for r in c.fetchall():
print(r)