赞
踩
- python
- importmysql.connector
- Traceback (most recent call last):
- File"<stdin>", line 1, in<module>
- ImportError: No module named mysql.connector
- importmysql.connector # 没有报错
- #简单测试下一查询,没有问题 看来直接复制过去好使
- cnx =mysql.connector.connect(user='root',password='root1234',host='localhost',database='test')
- cur=cnx.cursor()
- cur.execute('select * from userinfo')
- printcur.fetchall()
- [(2, u'astaxieupdate', u'\u7814\u53d1\u90e8\u95e8', datetime.date(2012, 12, 9)), (4, u'astaxieupdate', u'\u7814\u53d1\u9
- 0e8\u95e8', datetime.date(2012, 12, 9))]
- cnx.close()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。