Whilst I’m not at my computer to test, the meta object returned should have rows_read and rows_writt
Whilst I’m not at my computer to test, the meta object returned should have rows_read and rows_written that tell you
SELECT FOR UPDATE.wrangler -> state -> v3 -> d1 -> miniflare-D1DatabaseObject -> xxxxxxxxxx.sqlitealpha databases only let you download .sqlite backups, and beta databases don't let you download backups yetLIMIT issue with v0.2.0 of my exporter: https://github.com/Cretezy/cloudflare-d1-backup/commit/dffcd9fef0224593029add123244acef6b1afd3c


DELETE FROM verification_token where token = ?1 RETURNING *const result = await this.db
.prepare('DELETE FROM verification_token WHERE token = ?1 RETURNING *')
.bind(token)
.run();
if (result.error) {
return { data: null, error: Error(`failed to delete from db: ${result.error}`) };
}
if (result.results.length <= 0) {
return { data: null, error: null };
}
const vToken = result.results[0];