Failing connection with MySQLdb on Mac OS X

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Stephen Roderick

    Failing connection with MySQLdb on Mac OS X

    Getting weird error, and I was wondering if anyone had any suggestions.
    My system appears to satisfy all MySQLdb prerequisities in terms of
    python, mysql, etc. Also, phpMyAdmin works fine with mysql, leading me
    to believe that my installation of MySQLdb is at fault. Any ideas?

    TIA


    For file test1.py (for appropriate values of user and passwd, and
    database location exists)

    import MySQLdb
    db = MySQLdb.Connect ( host="localhost ", user="yyy", passwd="xxx",
    db="location" )

    Error is :

    Traceback (most recent call last):
    File "test1.py", line 3, in ?
    db="location" )
    File
    "/System/Library/Frameworks/Python.framewor k/Versions/2.3/lib/
    python2.3/site-packages/MySQLdb/__init__.py", line 63, in Connect
    return apply(Connectio n, args, kwargs)
    File
    "/System/Library/Frameworks/Python.framewor k/Versions/2.3/lib/
    python2.3/site-packages/MySQLdb/connections.py" , line 115, in __init__
    self._make_conn ection(args, kwargs2)
    File
    "/System/Library/Frameworks/Python.framewor k/Versions/2.3/lib/
    python2.3/site-packages/MySQLdb/connections.py" , line 41, in
    _make_connectio n
    apply(super(Con nectionBase, self).__init__, args, kwargs)
    _mysql_exceptio ns.InternalErro r: (-1, 'connection is closed')


Working...