[sqlite] Re: Stored procedures

2006-11-09 Thread Igor Tandetnik
VIGNY Cecilia wrote: Does SQLite supports stored procedures ? If it does, what is the appropriated syntax ? http://article.gmane.org/gmane.comp.db.sqlite.general/16099 Igor Tandetnik - To unsubscribe, send email to

[sqlite] Re: Stored procedures in triggers

2006-03-24 Thread Igor Tandetnik
A small correction: I was wrong about SQLite not supporting cascading triggers. Cascading triggers are supported, recursive triggers are not. That is, if you have an insert trigger on table A which, say, inserts into table B, and there's an insert trigger on table B, it will run. But if this la