日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > 数据库 >内容正文

数据库

Python - MySQL数据库操作

發布時間:2025/3/21 数据库 43 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Python - MySQL数据库操作 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

  Python2 中使用模塊 MySQLdb 模塊處理數據庫的操作,在Python3中使用 PyMySQL

Python2 - 數據庫的操作

1. MySQLdb 安裝

yum -y install MySQL-python

?

2. MySQL 數據庫操作

2.1 準備以下MySQL數據庫環境,便于后面的實驗

名稱
host192.168.0.30
port3306
userdbuser
passowrd123
databasemydb
tablemytable

?

?

?

?

?

?

?

2.2 簡單實例

1 #!/usr/bin/python 2 import MySQLdb 3 4 # Open a database connection 5 conn = MySQLdb.connect('192.168.0.30','dbuser','123','mydb') 6 7 # Create a cursor objec using cursor() 8 cursor = conn.cursor() 9 10 # SQL statement 11 sql = 'SHOW variables like "%char%"'; 12 13 # Execute SQL statement using execute() 14 cursor.execute(sql) 15 16 # Get data 17 data = cursor.fetchall() 18 19 print data 20 21 # Close database connection 22 cursor.close() View Code

??

2.2 Insert 插入數據

1 #!/usr/bin/python 2 import MySQLdb 3 4 '''Insert''' 5 # Open a database connection 6 conn = MySQLdb.connect('192.168.0.30','dbuser','123','mydb') 7 8 # Create a cursor objec using cursor() 9 cursor = conn.cursor() 10 11 # SQL statement 12 sql = 'INSERT INTO mytable(id,name) VALUES(2001,"Heburn"),(2002,"Jerry");' 13 14 try: 15 # Execute SQL statement using execute() 16 result = cursor.execute(sql) 17 # Commit 18 conn.commit() 19 print 'Insert',result,'records' 20 except: 21 # Rollback in case there is any error 22 conn.rollback() 23 24 # Close database connection 25 cursor.close() View Code

??

2.3 Update 更新數據

1 #!/usr/bin/python 2 import MySQLdb 3 4 '''Update''' 5 # Open a database connection 6 conn = MySQLdb.connect('192.168.0.30','dbuser','123','mydb') 7 8 # Create a cursor objec using cursor() 9 cursor = conn.cursor() 10 11 # SQL statement 12 sql = 'UPDATE mytable SET name="Lincoln" WHERE id = 2001;' 13 14 try: 15 # Execute SQL statement using execute() 16 result = cursor.execute(sql) 17 # Commit 18 conn.commit() 19 print 'Update',result,'records' 20 except: 21 # Rollback in case there is any error 22 conn.rollback() 23 24 # Close database connection 25 cursor.close() View Code

??

2.4 刪除數據

1 #!/usr/bin/python 2 import MySQLdb 3 4 '''Delete''' 5 # Open a database connection 6 conn = MySQLdb.connect('192.168.0.30','dbuser','123','mydb') 7 8 # Create a cursor objec using cursor() 9 cursor = conn.cursor() 10 11 # SQL statement 12 sql = 'Delete from mytable WHERE id = 2001;' 13 14 try: 15 # Execute SQL statement using execute() 16 result = cursor.execute(sql) 17 # Commit 18 conn.commit() 19 print 'Delete',result,'records' 20 except: 21 # Rollback in case there is any error 22 conn.rollback() 23 24 # Close database connection 25 cursor.close() View Code

??

2.5 查詢數據

1 #!/usr/bin/python 2 import MySQLdb 3 4 '''Select''' 5 # Open a database connection 6 conn = MySQLdb.connect('192.168.0.30','dbuser','123','mydb') 7 8 # Create a cursor objec using cursor() 9 cursor = conn.cursor() 10 11 # SQL statement 12 sql = 'SELECT id, name FROM mytable WHERE id = 2002;' 13 14 try: 15 # Execute SQL statement using execute() 16 cursor.execute(sql) 17 18 # Get all records 19 results = cursor.fetchall() 20 for row in results: 21 id = row[0] 22 name = row[1] 23 print 'id = %d, name = %s' % (id,name) 24 25 except: 26 print "Error: can't queray any data." 27 28 # Close database connection 29 cursor.close() View Code

??

2.6 創建表

1 #!/usr/bin/python 2 import MySQLdb 3 4 '''Create table''' 5 # Open a database connection 6 conn = MySQLdb.connect('192.168.0.30','dbuser','123','mydb') 7 8 # Create a cursor objec using cursor() 9 cursor = conn.cursor() 10 11 # SQL statement 12 sql = ''' 13 CREATE TABLE mytable ( 14 id int, 15 name char(20) 16 ) ENGINE = InnoDB DEFAULT CHARSET=utf8; 17 ''' 18 19 try: 20 # Execute SQL statement using execute() 21 cursor.execute(sql) 22 except: 23 print "Error: can't Create table mytable." 24 25 # Close database connection 26 cursor.close() View Code

??


?Python3 - 數據庫的操作

1. PyMySQL 安裝

2. MySQL 數據庫操作

2.1 準備以下MySQL數據庫環境,便于后面的實驗

名稱
host192.168.0.30
port3306
userdbuser
passowrd123
databasemydb
tablemytable

?

?

?

?

?

?

?

2.2 簡單實例

import pymysql# Open the database connection conn = pymysql.connect(host = '192.168.0.30',port = 3306,user = 'dbuser',password = '123',db = 'mydb',charset = 'utf8' )# Create a cursor object using cursor() cursor = conn.cursor()# SQL statement sql = 'SELECT VERSION()'# Execute SQL query using execute() cursor.execute(sql)# Get a piece single of data data = cursor.fetchone() print(data)# Close database connection conn.close() View Code

?

2.3 Insert 插入數據

1 # Insert 2 conn = pymysql.connect('192.168.0.30','dbuser','123','mydb') 3 cursor = conn.cursor() 4 sql = 'insert into mytable(id,name) values(1001, "Andrew");' 5 try: 6 cursor.execute(sql) 7 conn.commit() 8 except: 9 conn.rollback() 10 11 conn.close() View Code

?

2.4 Update 更新數據

1 # Update 2 conn = pymysql.connect('192.168.0.30','dbuser','123','mydb') 3 cursor = conn.cursor() 4 sql = 'update mytable set name = "Heburn" where id = 1001;' 5 try: 6 cursor.execute(sql) 7 conn.commit() 8 except: 9 conn.rollback() 10 11 conn.close() View Code

?

2.5 Delete 刪除數據

1 # Delete 2 conn = pymysql.connect('192.168.0.30','dbuser','123','mydb') 3 cursor = conn.cursor() 4 sql = 'delete from mytable where id = 1001;' 5 try: 6 cursor.execute(sql) 7 conn.commit() 8 except: 9 conn.rollback() 10 11 conn.close() View Code

?

2.6 Select 查詢數據

fetchone() 獲取查詢結果集中的一行內容

fetchall() 獲取查詢結果集中的所有行內容

1 # Database Query 2 conn = pymysql.connect('192.168.0.30','dbuser','123','mydb') 3 cursor = conn.cursor() 4 sql = 'select * from mytable where id = 1001;' 5 try: 6 cursor.execute(sql) 7 results = cursor.fetchall() 8 for row in results: 9 id = row[0] 10 name = row[1] 11 print("id = %d, name = %s" % (id,name)) 12 except: 13 print('Error: unable to fetch data.') 14 15 conn.close() View Code

?

轉載于:https://www.cnblogs.com/zhubiao/p/8664801.html

總結

以上是生活随笔為你收集整理的Python - MySQL数据库操作的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。