Hi, I have two processes connecting to a database. Both can modify database. When some process modify database, I want the other to be notified (so, it can reload data). Currently, I use unix sockets, so a process can notify all listener process that something has changed. But I wonder if there's a better way to achieve that. I've tried to a create a custom function (with sqlite3_create_function), and use triggers. But unfortunately, my trigger was executed for the modifying process. So, is there a sqlitish way to have process notifications, or should I stick to using unix sockets to tell other processes something has changed in the database. I'm using C++ language (C api for sqlite)
regards arno _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users