You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for this library, I just migrated a project over from CppSqlite (which I'd been maintaining) over to this.
I have a question on prepared statements - is there a reason manually calling execute on a statement (and notstatement++) does not set used to true? From the documentation and going by logic, I assumed execute() would execute the statement and set it to used. reset would unbind parameters and set used to false. But that's not the case since it remains "unused" even after explicitly executing and will run once more before destructing unless used(false) is manually called.