Yevgeniy Zakharov
Yevgeniy Zakharov
yes it is. I am thinking about proper API
Hello. This is a good case. Actually the only sqlite3 call in this code is `sqlite3_unlock_notify`. What if we add `sqlite3_unlock_notify` API to storage and other will be added on...
what if this kind of callback can be set right in storage just like `storage.on_open` already exists? So you write: ```c++ storage.unlock_notify_callback = [] { // do whatever you want...
@undisputed-seraphim one more question. Can you solve your issue with `sqlite3_busy_handler`?
@undisputed-seraphim are you there?
Ok I see that my idea is not enough. It will be easier to implement it of I know how to reproduce database to return `SQLITE_BUSY`. Do you know how...
> SQLITE_BUSY is a conflict between 2 different DB connections, whereas SQLITE_LOCKED is a conflict within the same DB connection. For my use case, both happens uncommonly, but when it...
> (And a new release tag soon!... I hope!) Yes it will be very soon (in a week). For updates please follow twitter account of this lib https://twitter.com/sqlite_orm
How did you do it? I am curious.