本文共 319 字,大约阅读时间需要 1 分钟。
在命令行下运行如下:
import MySQLdb
conn=MySQLdb.connect(host
=
'localhost'
,user
=
'root'
,passwd
=
'xxxx'
,db
=
'test1'
)
xxxx是实际的密码。
但是运行上面代码时出现错误:
Can't connect to local MySQL server...
但是,如果把localhost修改为127.0.0.1即可!
根据后面参考中的提示,我打开WIN7下的文件C:\WINDOWS\system32\drivers\etc\hosts。
把#localhost 127.0.0.1
前面的注释#去掉。再运行上面原始代码OK。深入的细节暂时不得而知。
参考:
转载地址:http://tejex.baihongyu.com/