rdrink wrote: > created at the cmnd-line, e.g. 'test.db' with a table 'foo', I would > get the error "_sqlite.DatabaseError: no such table: foo". My suspition > was that this is a "feature" of sqlite ('flat file' vs. a dynamic db in > MySQL) where sqlite is 'sensetive' to who creates it...
Most likely you do not operate on the same database file. Connecting to a sqlite database will create the underlying database file if it does not exist at the path you've specified. i. -- http://mail.python.org/mailman/listinfo/python-list