Greetings.

I know that if I am doing INSERTs and such, I need to,

BEGIN;
    INSERT...
END;

But, do I need to begin if I am going to create a table? ie.

BEGIN;
    CREATE TABLE tableName
    (
        JobID integer primary key, SubProjID integer, ProjID integer
    );
END;

Also, what other commands should I wrap with BEGINs and ENDs?

Thanks so much for the support.  And Dr. Hipp, 3.8.0 rocks!

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

Reply via email to