[issue14076] sqlite3 module ignores placeholers in CREATE TRIGGER code

2012-02-25 Thread Christian Schilling
Changes by Christian Schilling : -- nosy: +Christian.Schilling ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14076] sqlite3 module ignores placeholers in CREATE TRIGGER code

2012-02-24 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +ghaering ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue14076] sqlite3 module ignores placeholers in CREATE TRIGGER code

2012-02-21 Thread GuGu
New submission from GuGu : When I try to use placeholders in CREATE TRIGGER (for django-denorm module) SQLite module just ignores placeholders and sends `None` to it. For example: In [11]: c.cursor().execute('CREATE TRIGGER test1 after insert on a for each row begin UPDATE a SET b=?; END',