Here's my scenario, I have two applications, reader and a writer, and a shared database. Writer will be writing changes to the database and reader will be reading. Originally my idea was for the reader to use sqlite3_update_hook() to watch for database changes. But after I got the code written, the hooked function was never called. A little inter-tubes research revealed this: http://tinyurl.com/dc279r. It basically says sqlite3_update_hook() is not designed for that.
My question is, does SQLite offer ways of hooking up a second application to changes in a shared DB without polling? _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users