On Mar 2, 2007, at 10:22 AM, Jeff Johnson wrote:
> Ed: It's coming up now! Funny how those things work! I am using
> 2.5, so
> OK.
So since you have 2.5, you shouldn't install pysqlite.
At the top of dabo.db.dbSQLite.py, there is the code that
distinguishes between the two:
try:
from pysqlite2 import dbapi2 as dbapi
except ImportError:
import sqlite3 as dbapi
When Python integrated pysqlite2 into the language, it changed the
name to the more correct 'sqlite3', since it is designed to work with
the SQLite3 database. It also got rid of the old, non-dbapi 2.0-
compliant parts.
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users