Is it possible to register a Sqlite function in an application and trigger it from another application?
Example:
- I create a trigger which calls MyFunction() after an update
- Application A uses SQLiteFunction.Register to register the function called MyFunction
- Application B makes an update which fires the trigger
When application B makes the update, I receive an error like "Function MyFunction is not defined". Is there a way to register the function with a "global" scope?
PS: The final purpose is that of simulating events across applications using triggers
Thank you