0

接続のために以下のコードを使用しています:

    import MySQLdb



db = MySQLdb.connect("localhost","root","root","test" )


cursor = db.cursor()


cursor.execute("SELECT * from student")


data = cursor.fetchone()
print "Database result : %s " % data


db.close()

ファイルの実行中に以下のエラーが発生します。

Traceback (most recent call last):
File "C:/Python27/xsxs.py", line 5, in <module>
db = MySQLdb.connect("localhost","root","root","test" )
File "C:\Python27\lib\site-packages\MySQLdb\__init__.py", line 81, in Connect
return Connection(*args, **kwargs)
File "C:\Python27\lib\site-packages\MySQLdb\connections.py", line 187, in __init__
super(Connection, self).__init__(*args, **kwargs2)
OperationalError: (2003, "Can't connect to MySQL server on 'localhost' (10061)")

どうすれば解決できますか。

4

3 に答える 3

1

問題は、windwos ホストで mysql サーバーが実行されていないようです。インストールする必要があるか(http://www.mysql.de/why-mysql/windows/)、次のような別のサーバーを選択する必要があります

db = MySQLdb.connect("my_mysql_host.mydomain.tld","root","root","test" )

それでおしまい。

ご挨拶

于 2013-03-22T09:21:19.477 に答える
1

接続文字列を確認してください:

db = MySQLdb.connect(host="localhost", # your host, usually localhost
                     user="username", # your username
                      passwd="Pswrd", # your password
                      db="MyDB") # name of the data base

この SO は次のことに役立ちます。

Python で MySQL データベースに接続するにはどうすればよいですか?

よろしくお願いします

于 2013-03-22T09:21:40.487 に答える