I'm new to triggers so I apologize if this is a stupid question.
Is it possible to have a trigger (or some other database mechanism) raise an event in another process. For instance, I need an application to be made aware of a certain activity (update in a specific table with specific data), but I'd rather not have that process poll the database. Does anyone know if it is possible for a trigger (or maybe a stored procedure) to raise an event or some other asynchronous notification mechanism in another process?
[NOTE: Recipient application is written in C# and database is sqlite]