Is there a visual explorer for local databases?
Is there a visual explorer for local databases?
.wrangler/state/v3/d1. It's a sqlite file, you could explore or even modify it using your favorite toolwrangler d1 export: https://github.com/cloudflare/workers-sdk/pull/5425


✘ [ERROR] Wrangler could not process the provided SQL file, as it contains several transactions.
D1 runs your SQL in a transaction for you.
Please export an SQL file from your SQLite database and try again. async scheduled(event, env, ctx) {
ctx.waitUntil(doSomeTaskOnASchedule(env, ctx));
ctx.waitUntil(theOtherTask(env, ctx));
}