【发布时间】:2015-10-09 11:13:45
【问题描述】:
我是 python 新手,我有简单的代码来使用 MySQLdb 和 Python3.4 在 localhost 中连接数据库。
Python 代码:
#!c:/Python34/python.exe -u
import cgitb ,cgi
import sys
import MySQLdb
conn = MySQLdb.connect(host='localhost',port=3306,
db='example2',
user='root',
password='tiger')
cursor = conn.cursor()
if conn:
print("sucess")
但在执行代码时出现错误 错误:
Traceback (most recent call last):
File "<pyshell#27>", line 4, in <module>
password='tiger')
File "C:\Python34\lib\site-packages\MySQLdb\__init__.py", line 81, in Connect
return Connection(*args, **kwargs)
File "C:\Python34\lib\site-packages\MySQLdb\connections.py", line 204, in __init__
super(Connection, self).__init__(*args, **kwargs2)
TypeError: an integer is required (got type str)
请给点建议
【问题讨论】:
-
请不要从您的问题中编辑错误。您的问题现在无法使用。
标签: python apache localhost mysql-python