sqlite3 - C# Sqlite function across applications -


is possible register sqlite function in application , trigger application?

example:

  • i create trigger calls myfunction() after update
  • application uses sqlitefunction.register register function called myfunction
  • application b makes update fires trigger

when application b makes update, receive error "function myfunction not defined". there way register function "global" scope?

ps: final purpose of simulating events across applications using triggers

thank you

if you're trying pass event notifications between multiple applications, sqlite -- or matter, database table -- wrong tool job.

if operation asynchronous might want use named eventwaithandle notify other process you've done should interested in, or if there's data involved, stuff notification , data in messagequeue other application pick up.

otherwise, should use real inter-process communication mechanism sockets, named pipes, remoting, wcf, etc.


Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -