単純に python を介して mysql のデータベースにアクセスしたいのですが、このコードを実行しているとき:
import MySQLdb
db = MySQLdb.connect(host = "127.0.0.1",
port = "3306",
user="Bishnu",
passwd = "Pulchowk",
db = "student")
cursor =db.cursor()
cursor.execute("select * from basic_info")
numrows = int(cursor.rowcount)
for x in range(0,numrows):
row = cursor.fetchall()
print row[0],"-->",row[1]
db.cose()
次のようなエラーが発生します。
Traceback (most recent call last):
File "C:\Users\Bishnu\Desktop\database", line 6, in <module>
db = "student")
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)
TypeError: an integer is required
その TypeError は何ですか : 整数が必要です
なぜこのような問題が発生するのでしょうか。このコードを実行するには 3 つの問題がありますが、幸運にもこのフォーラムで 2 つの問題が解決されました。