but there is the preview_database_id, is that not supported?
but there is the preview_database_id, is that not supported?
wrangler dev lists both the database_id and preview_database_id --preview flagBetaDatabaseStatement. These were subtly different to the implementationsHey!This should've been fixed by #480, and will be released soon. I'd like to include #486 in this, so just waiting until that's approved.



% into .bind)?LIMIT ?3 OFFSET ?4?
--local btw?.bind("'%%'") (compared to .bind("%%"), which gives results)--previewBetaDatabaseStatement%.bindconst { results } = await c.env.DB.prepare(
'select * from spaces where title like ?'
)
.bind(`%${title}%`)
.all();SELECT UniqueID, ParentID, Contact, Cellphone, Email
FROM contacts
WHERE UniqueID LIKE ?1
OR ParentID LIKE ?1
OR Contact LIKE ?1
OR Cellphone LIKE ?1
OR Email LIKE ?1
ORDER BY ?2
LIMIT ?3, ?4LIMIT ?3 OFFSET ?4.bind("'%%'").bind("%%")