Re: Python/MySQL problem on Windows

2006-09-27 Thread Lawrence D'Oliveiro
In message [EMAIL PROTECTED], Eric Smith wrote: I could have sworn that I got the use of connection() from published sample code, but I must be mistaken. If all else fails, read the documentation http://www.python.org/dev/peps/pep-0249/, -- http://mail.python.org/mailman/listinfo/python-list

Python/MySQL problem on Windows

2006-09-20 Thread Eric Smith
I'm trying to use Python 2.4.3 and pywin32-209 to access a MySQL database on Windows Server 2003 Standard Edition, and not having much luck. It seems like parts of the MySQLdb module are not getting loaded correctly, but no error message is given during the import, even if I give a -vv on the

Re: Python/MySQL problem on Windows

2006-09-20 Thread Carsten Haese
On Wed, 2006-09-20 at 16:37, Eric Smith wrote: I'm trying to use Python 2.4.3 and pywin32-209 to access a MySQL database on Windows Server 2003 Standard Edition, and not having much luck. It seems like parts of the MySQLdb module are not getting loaded correctly, but no error message is given

Re: Python/MySQL problem on Windows

2006-09-20 Thread Eric Smith
Carsten Haese [EMAIL PROTECTED] writes: What happens if you use connect(...) instead of connection(...)? Then it works! :-) I could have sworn that I got the use of connection() from published sample code, but I must be mistaken. Thanks! Eric --