Using pysqlite2

Dennis Benzinger Dennis.Benzinger at gmx.net
Fri Jun 2 16:55:25 EDT 2006


lolmcbride at googlemail.com 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



More information about the Python-list mailing list