On 26 Feb 2020, at 11:58pm, mailing lists wrote:
> The issue is that sqlite_reset() reports the same error that already
> sqlite3_step() reported. How can I prevent that sqlite_reset() reports the
> same error.
You can't. It's working as designed.
One would normally test the result that sqli
I am executing a prepared statement S with a couple of different bindings. The
execution sequence is similar to this
while (moreBindings)
{
bind_parameters_to_prepared_statement;
sqlite3_step();
if (error)
{
…
}
sqlite_reset();
if (error)
{
}
}
The issue is that sqlite_reset() reports the sam
2 matches
Mail list logo