[EMAIL PROTECTED] wrote:
> Does not work:
>
> CREATE TABLE ttt ( t INTEGER PRIMARY KEY );
>
> CREATE TRIGGER ttt_new_trigger AFTER INSERT ON ttt FOR EACH ROW
> BEGIN
>    CREATE TABLE uuu ( u INTEGER PRIMARY KEY );
> END;

It's not supposed to, according to 
http://sqlite.org/lang_createtrigger.html . The syntax only allows 
select, insert, update and delete statements.

What are you trying to achieve?

Igor Tandetnik 



_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to