Hi is it possible to use d1 without cloudflare workers in other words using Java app running on remo
Hi is it possible to use d1 without cloudflare workers in other words using Java app running on remote server? Or from android app




wrangler d1 insights to see what the high rows_read queries areselect * from (select count(*) from table...);select sqlite master and select (select contributes almost 10kDROP TABLE IF EXISTS at the start of your schema.sql, you can then add a package.json script that runs wrangler d1 execute dbname --local --file=schema.sql to reinitialize the db as neededwrangler d1 insightsselect * from (select count(*) from table...);select sqlite masterselect (selectDROP TABLE IF EXISTSwrangler d1 execute dbname --local --file=schema.sqldb.batch([
db.insert(users).values(),
db.insert(posts).values({ userId: sql`last_insert_rowid()` })
])