首页 > 数据库技术 > 详细

python3-连接MySQL(mysql.connector与MySQLdb区别)

时间:2017-03-17 16:20:36      阅读:464      评论:0      收藏:0      [点我收藏+]
import mysql.connector
cnx = mysql.connector.connect(user=scott, password=tiger,host=127.0.0.1,database=employees)
cnx.close()
import MySQLdb

db = MySQLdb.connect(host="localhost", # your host, usually localhost
                     user="john", # your username
                      passwd="megajonhy", # your password
                      db="jonhydb") # name of the data base

cur = db.cursor() 
cur.execute("SELECT * FROM YOUR_TABLE_NAME")
MySQLdb is a C module that links against the MySQL protocol implementation in the libmysqlclient library. It is faster, but requires the library in order to work.

mysql-connector is a Python module that reimplements the MySQL protocol in Python. It is slower, but does not require the C library and so is more portable.

注:以上内容转自“http://stackoverflow.com/questions/32575857/the-differences-between-mysqldb-and-mysqlconnector”

python3-连接MySQL(mysql.connector与MySQLdb区别)

原文:http://www.cnblogs.com/GYoungBean/p/6566484.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!