Explanation on execute() vs all() vs get() vs run()
I am using
Same goes for
When do I know when to run those different queries for SQLite?
Thank you!
prepare() to make prepared statements for Turso (so SQLite), and the docs use prepare.all() for SQLite instead of prepare.execute() as is used for PostgreSQL and MySQL, why is that?Same goes for
prepare.get() for SQLite instead of prepare.execute()When do I know when to run those different queries for SQLite?
Thank you!