Is there a way for a passively waiting client appliaction to receive some kind of notification that is triggered in the databas using a trigger, stored procedure, dbms_output.put_line, or anything suitable.
A want to avoid 100-200 client apps connectiig to one database coninously polling for changes. Insted I'd like to add a trigger that sends an event to all instances of the application connected.
I imagine this woult be an event on my TOracleSession just like OnClick on a button.
Any help would be apreciated. The event waiting mechanism is not accaptable (an oracle feature) because I must do other queries while wainting for this thing, and than it wouyld require a new session just for this.
A want to avoid 100-200 client apps connectiig to one database coninously polling for changes. Insted I'd like to add a trigger that sends an event to all instances of the application connected.
I imagine this woult be an event on my TOracleSession just like OnClick on a button.
Any help would be apreciated. The event waiting mechanism is not accaptable (an oracle feature) because I must do other queries while wainting for this thing, and than it wouyld require a new session just for this.