python+pymysql

何周钦發表於2024-11-22

python操作mysql
一、python運算元據庫
1、下載pymysql 庫,
方法一:pip3 install pymysql 或pip install pymysql
方法二:在pycharm中setting下載pymysql

2、開啟虛擬機器上的資料庫

3、pymysql連線
(1)連線方式:pymysql.Connection 或者pymysql.connect
(2)包含內容
a.host 主機:填寫IP地址
b.user 資料庫使用者名稱
c.password 或passwd 密碼:
d.databases 或db 庫名
e.port 埠 :預設3306
f.chardet ='utf8' 編碼格式
(2)將連線內容設定成一個變數,然後建立一個遊標物件
db.cursor
(3)使用遊標物件去執行sql語句
(4)在根據需要顯示內容使用 fetchone,fetchall,fetchmany
案例1:查詢

案例2:刪除語句
sql="delete from emp where name='張三'"
yb.execute(sql)
案例3:
插入資料
sql="insert into emp VALUES('1835','張三', 55, '1971/10/20', 7300, '101');"
yb.execute(sql)
案例4:
修改資料
sql="UPDATE emp SET name='zhan' where sid=1674"
yb.execute(sql)