Mike Johnston <mkejohnston-/[EMAIL PROTECTED]>
wrote:
What is the best way to get notified a table changed? I would like
to monitor a table for inserts without resorting to polling. Anyway
to have a trigger call a 'C' function or something?
You can create a custom function with sqlite3_create_function. A trigger
can then do something like
select MyFunction(new.rowid);
to call it.
Igor Tandetnik
-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------