[python-win32] mysqldb python

Tim Roberts timr at probo.com
Thu Oct 25 20:32:41 CEST 2007


kNish wrote:
>
> Hi,
>       
>           After trouble shooting error 10061, 1130, 1045 and 1044.
> Finally, the following code works in a python shell.
>
> import MySQLdb
> import MySQLdb.cursors
> conn = MySQLdb.connect(host="ENG-3", user = "Any", passwd = "", db =
> "daily", cursorclass=MySQLdb.cursors.DictCursor)
>
> user='root' also works. I now have a small cgi script, the values from
> the user are taken and inserted in the database. When this script is
> called with a click of a button, the throws the error page, saying
>
> "
> Internal Server Error
> The server encountered an internal error or misconfiguration and was
> unable to complete your request.
>
> Please contact the server administrator, admin at renderunit-19
> <mailto:admin at renderunit-19> and inform them of the time the error
> occurred, and anything you might have done that may have caused the error.
>
> More information about this error may be available in the server error
> log.
>
> "
>

The last line of the error page is the key.  If you look in the Apache
error log on your server, you will see the Python traceback of the error.

-- 
Tim Roberts, timr at probo.com
Providenza & Boekelheide, Inc.



More information about the python-win32 mailing list