Hi, all.

I have the following problem: I have some  processes that access the same db
file. When one of them would change some data inside the db it must notify
all other processes about change AND send them changed data (or it's unique
description).

But I didn't find any method to perform this using db triggers or callbacks.
On some certain reasons I am not allowed to write wrapper that will send
notifications using IPC. I would like db to perform this task.

As for triggers and callbacks (hooks): they are fired before the data is
stored to the db (file), so that I coudn't even read changed data back
inside hook. sqlite_update_hook() returnes rowID, but I didn't find any API
to use this value...

I would appriciate any ideas or comments.
Thanks in advance.
-- 
View this message in context: 
http://www.nabble.com/Trigger%27s-actions-and-callbacks-tp16418413p16418413.html
Sent from the SQLite mailing list archive at Nabble.com.

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to