[EMAIL PROTECTED] wrote: > Is it possible to use this for sending triggers to a sqlite db?Could > someone provide me with an example of how to do this please? > Thanks
Do you want to implement a trigger for a SQLite database in Python? That won't work. Triggers in SQLite can only contain UPDATE, INSERT, DELETE and SELECT statements http://sqlite.org/lang_createtrigger.html>. Bye, Dennis -- http://mail.python.org/mailman/listinfo/python-list