Prepared Statements don't seem to be working
I did post about this in #d1-database , but not sure if this is a better place for it - https://discord.com/channels/595317990191398933/992060581832032316/1227027355898220646
will always return
The first
?
always seems to be the site of a syntax error. This is always during the bind phase (creating the statement and not binding does not cause an error)2 Replies
You can't use
?
for table names
Parameters may not be used for column or table names, or as values for constraints or default values.https://www.sqlite.org/cintro.html
This is it! Thank you so much! - Knew I was going stupid somewhere