Re: beginner's problem with sqlite3
Tom Cloyd wrote:
> db.execute( 'INSERT INTO newsheap(datecol titlecol urlcol summarycol)
> VALUES(date title url summary)' )
I would have written the sql with a few commas and a semi colon.
INSERT INTO newsheap (datecol, titlecol, urlcol, summarycol) VALUES
(date, title, url, summary);
Pretty sure that's the error
|