SQLiteCpp
SQLiteCpp copied to clipboard
is there any update hook interface?
For e.g. wrapper of the function sqlite3_update_hook()
Hi @alext234,
No there is no such hook presently (https://github.com/SRombauts/SQLiteCpp/search?utf8=%E2%9C%93&q=sqlite3_update_hook)
If you want it is trivial to use the "raw SQLite3 database handle" to use directly any SQLite3 C API call.
Else, it would be really easy for you to implement this feature into the SQLiteCpp wrapper, then I could integrate your code if you will.
Cheers!