Python3 连接Mysql数据库
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3 连接Mysql数据库相关的知识,希望对你有一定的参考价值。
初学Python ,目前无论是电子书还是网上的教程,都是针对于python2.7,但是对于部分语法以及模块都有变化。
比如
urllib2是python自带的模块,不需要下载。
urllib2在python3.x中被改为urllib.request
Python 2.x中连接mysql比较常用的就是MySQLdb。网上大量教程也都在使用这个模块(我也通过pip install MySQLdb安装一直都不成功)。
目前MySQLdb不支持python3.x.可以使用MySQL connnecter代替。
import mysql.connector import sys user = ‘root‘ pwd = ‘root‘ host = ‘20.0.2.50‘ db=‘mysql‘ create_tab_sql = "CREATE TABLE IF NOT EXISTS TAB_TEST( TAB_NAME VARCHAR(20), CITY_NAME VARCHAR(20)) CHARACTER SET utf8" conn = mysql.connector.connect(user=user,password=pwd,host=host,database=db) cursor = conn.cursor() try: cursor.execute(create_tab_sql) except mysql.connector.Error as err: print("create table ‘tab_test‘ failed.") print("Error:{}".format(err.msg)) sys.exit()
本文出自 “LIBYDWEI” 博客,请务必保留此出处http://libydwei.blog.51cto.com/37541/1774772
以上是关于Python3 连接Mysql数据库的主要内容,如果未能解决你的问题,请参考以下文章
连接MySQL出现错误:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)(代码片段