sqlite> drop trigger xx;
SQL error: no such trigger: xx
sqlite> select name, length(name) from sqlite_master
...> where type='trigger' and name like '%xx%';
xx|2
sqlite> pragma integrity_check;
ok
I had to dump the database and recreate it to get rid of
the trigger.
I kept a copy of the db file, but I don't think I can
duplicate the problem in a new file. Is this worth
pursuing under these circumstances?
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]