python 连接mysql数据库
程序员文章站
2024-02-10 14:04:34
...
#coding=UTF-8
import MySQLdb
# 打开数据库连接
db = MySQLdb.connect(host="localhost",port=3308,user="root",passwd="11111",db="test", charset='utf8' )
# 使用cursor()方法获取操作游标
cursor = db.cursor()
# 使用execute方法执行SQL语句
cursor.execute("SELECT VERSION()")
# 使用 fetchone() 方法获取一条数据
data = cursor.fetchone()
print "Database version : %s " % data
# 关闭数据库连接
db.close()
注意:端口 port不是字符串,是一个整型
希望对你有所帮助
上一篇: Oracle
推荐阅读
-
python 连接mysql数据库
-
python MySQLdb连接mysql失败
-
kettle连接数据库报错:Error occured while trying to connect
-
PHP使用ODBC连接数据库的方法
-
Ubuntu pip 安装 mysql-python包出错
-
macos 安装MySQLdb:pip install MySQL-python
-
Python2.7使用MySQL的一些小问题
-
Adobe Dreamweaver CC MySQL连接 报404错误的解决方法_MySQL
-
PHP实现PDO的mysql数据库操作类,phppdomysql数据库
-
MySQL 数据库规范化设计(3)_MySQL