温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

python如何连接数据库

发布时间:2022-02-19 16:10:25 来源:亿速云 阅读:169 作者:iii 栏目:开发技术

本篇内容介绍了“python如何连接数据库”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

使用 mysql-connector 连接数据库

首先需要安装相应的第三方库,使用指令 pip install mysql-connnector 进行 mysql-connector 库的安装。

连接并创建数据库(代码附带注释):

import mysql.connector
#使用mysql-connector连接数据库
mydb = mysql.connector.connect(
  host="localhost",       # 数据库主机地址
  user="root",    # 数据库用户名
  passwd="root"   # 数据库密码
)
print(mydb)
mycursor = mydb.cursor()#获取操作游标
mycursor.execute("CREATE DATABASE IF NOT EXISTS w3cschool DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_unicode_ci;")
#执行SQL语句,execute函数内放入需要执行的SQL语句
mycursor.close()#关闭操作游标
mydb.close()#关闭数据库连接

数据库的增删改查(代码附带注释):

import mysql.connector
from mysql.connector import cursor
#使用mysql -connector连接到指定的数据库
w3cdb = mysql.connector.connect(
  host="localhost",       # 数据库主机地址
  user="root",    # 数据库用户名
  passwd="root",   # 数据库密码
  database = "w3cschool",#连接的数据库
  charset = "utf8"#连接数据库的字符集
)
cursor = w3cdb.cursor()#获取操作游标
#sql创建表语句
createSQL = """
CREATE TABLE `newtable` (
`id`  int NOT NULL AUTO_INCREMENT ,
`username`  char(25) NOT NULL ,
`password`  char(16) NOT NULL ,
PRIMARY KEY (`id`)
)
;
"""
#SQL插入数据语句
insertSQL = """
insert into newtable values (4,'username','123');
"""
#sql更新表语句
updateSQL = """
update newtable set username = 'steve' where id=1;
"""
#sql表删除语句
deleteSQL = """
delete from newtable where id=1;
"""
#sql表查询语句
selectSQL ="select * from newtable;"
cursor.execute(selectSQL)#执行查询语句
res = cursor.fetchall()#取出所有数据
print (res)
#以下涉及到数据库更改操作的,在执行结束后需要commit()提交更改
cursor.execute(deleteSQL)#执行删除语句
w3cdb.commit()
cursor.execute(insertSQL)#执行插入语句
w3cdb.commit()
cursor.execute(updateSQL)#执行更新语句
w3cdb.commit()
cursor.close()
w3cdb.close()

“python如何连接数据库”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI