I type very fast and my fingers added the semicolon on the end
because they're used to doing it:

sqlite> .dump people_event;
BEGIN TRANSACTION;
COMMIT;

sqlite> .dump people_event
BEGIN TRANSACTION;
CREATE TABLE People_Event
  (
    People            INTEGER NOT NULL,
    Event             INTEGER NOT NULL
  );
INSERT INTO "People_Event" VALUES(1, 2);
INSERT INTO "People_Event" VALUES(2, 3);
COMMIT;



                
__________________________________ 
Do you Yahoo!? 
Yahoo! Mail - 250MB free storage. Do more. Manage less. 
http://info.mail.yahoo.com/mail_250

Reply via email to