MySQL: AttributeError: cursor

Kevin Murphy kevinmurphy9999 at gmail.com
Sat Feb 11 12:40:09 EST 2012


Hi All,
I'm using Python 2.7 and having a problem creating the cursor below.
Any suggestions would be appreciated!

import sys
import _mysql

print "cursor test"

db =
_mysql.connect(host="localhost",user="root",passwd="mypw",db="python-
test")

cursor = db.cursor()

>>>
cursor test

Traceback (most recent call last):
File "C:\Python27\dbconnect.py", line 8, in <module>
cursor = db.cursor()
AttributeError: cursor



More information about the Python-list mailing list