Emulate Oracle DB server to provide external callback

271 Views Asked by At

I am trying to think of a solution to provide my own callback to events which can only be pushed to an Oracle Database server (configuration parameters are ip, port, user, pass) by an external server.

I have been told that, if i did have an Oracle DB server, i could provide my callback using a script like this :

open SQL connection.
exec my_own_callback("parameter1");
close conn;

Is there any available tool to emulate an Oracle Database server just enough so that the function my_own_callback, provided in a shared library, is called whenever an event is pushed by the external platform ?

I have searched the web for such alternatives, but could not find any (yet ?).

0

There are 0 best solutions below