Re: Correctly Importing SQLite3 in Python-2.5
Thorsten Kampe <[email protected]>
| Newsgroups | gmane.comp.python.db.pysqlite.user |
|---|---|
| Message-ID | <[email protected]> |
* Rich Shepard (Sun, 11 Nov 2007 16:54:47 -0800 (PST)) > I recall reading that SQLite3 is built into Python-2.5 now, so instead of > writing 'from pysqlite2 import dbapi2 as sqlite3' we write 'import sqlite3'. > But, that's not working here. The error I see is: > > Traceback (most recent call last): > File "eikos.py", line 3, in <module> > import wx, serial, os, config, functions, sqlite3 > File "/usr/lib/python2.5/sqlite3/__init__.py", line 24, in <module> > from dbapi2 import * > File "/usr/lib/python2.5/sqlite3/dbapi2.py", line 27, in <module> > from _sqlite3 import * > ImportError: No module named _sqlite3 Are you using Cygwin Python? T.