mxODBC problems

Nicole Cook cook at maya.com
Thu Feb 8 10:00:49 EST 2001


I've installed mxODBC on Windows, and I'm still trying to get it to the
point where I can use it.  I know it's all there, and it's not colliding
with win32all.  Is there something wrong with my python path?   I don't know
what to try next.

Nicole


Python 1.5.2 (#0, Apr 13 1999, 10:51:12) [
Copyright 1991-1995 Stichting Mathematisch
>>> import ODBC
>>> import ODBC.Windows
Traceback (innermost last):
  File "<stdin>", line 1, in ?
ImportError: No module named Windows
>>> from ODBC import Windows
Traceback (innermost last):
  File "<stdin>", line 1, in ?
ImportError: cannot import name Windows
>>> from ODBC import *
>>> db = ODBC.Windows.connect
Traceback (innermost last):
  File "<stdin>", line 1, in ?
AttributeError: Windows
>>> from ODBC.Windows import *
Traceback (innermost last):
  File "<stdin>", line 1, in ?
ImportError: No module named Windows
>>>






More information about the Python-list mailing list