I am using sqlite with python 2.5. I get a sqlite error with the syntax below. I looked around and saw AUTOINCREMENT on this page http://www.sqlite.org/syntaxdiagrams.html#c
You could try
CREATE TABLE fileInfo ( fileid INTEGER PRIMARY KEY AUTOINCREMENT, name STRING, status INTEGER NOT NULL );