python连接mysql出错 AttributeError: 'Connection' object has no attribute 'cursorclass' 30

错误信息:AttributeError:'Connection'objecthasnoattribute'cursorclass'代码:importMySQLdb#建立和... 错误信息:AttributeError: 'Connection' object has no attribute 'cursorclass'

代码:
import MySQLdb

#建立和数据库系统的连接
conn = MySQLdb.connect(host='localhost', user='root',passwd='211')

#获取操作游标
cursor = conn.cursor()
#执行SQL,创建一个数据库.
cursor.execute("""create database python """)

#关闭连接,释放资源
cursor.close();
展开
 我来答
lpe234
2017-08-14 · TA获得超过2778个赞
知道小有建树答主
回答量:1250
采纳率:50%
帮助的人:569万
展开全部

你好像还有其他的代码没有上传。给你个示例代码:

# 引入 MySQLdb包
import MySQLdb
# 连接数据库
conn = MySQLdb.connect(
            host='localhost',         # 主机名            
            user='root',              # 用户名            
            passwd='12345',           # 密码            
            db='douban',              # 数据库名            
            port=3306,                # 端口            
            charset='utf8'            # 编码        
            )

# 获取数据库操作游标
cursor = conn.cursor()

# 写入数据
sql = 'insert into movie(name, score, time) values(%s, %s, %s)'
param = ('The Shawshank Redemption', 9.6, 1994)
n = cursor.execute(sql, param)        

# 会返回执行操作的条数# 更新数据
sql = 'update movie set name = %s where id = %s'
param = ('The Shawshank Redemption', 1)
n = cursor.execute(sql, param)

# 查询数据
sql = 'select * from movie'
n = cursor.execute(sql)
cursor.fetchall()                     
# 会返回所有的结果集,tuple元组型 
for row in cursor.fetchall():
    for r in row:
        print r

# 删除操作
sql = 'delete from movie where id = %s'param = (1)
n = cursor.execute(sql, param)

# 最后,关闭游标
cursor.close()
# 提交事务
conn.commit()
# 关闭连接
conn.close()
macru
2012-07-23 · TA获得超过172个赞
知道小有建树答主
回答量:250
采纳率:0%
帮助的人:187万
展开全部
我运行一切正常。。
python 2.7.3 MySQLdb 1.2.3

以下是在网上找的
importMySQLdb
importMySQLdb.cursors
conn=MySQLdb.connect(host ='127.0.0.1',
user ='root',
passwd ='root',
db ='test',)
cursor=conn.cursor(cursorclass =MySQLdb.cursors.DictCursor)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式