Python 学习笔记 - 操作MySQL

Python里面操作MySQL可以通过两个方式:

  1. pymysql模块
  2. ORM框架的SQLAchemey

本节先学习第一种方式。

学习Python模块之前,首先看看MySQL的基本安装和使用,具体语法可以参考豆子之前的博客http://beanxyz.blog.51cto.com/5570417/1609972

或者官方简介

https://mariadb.com/kb/en/mariadb/basic-sql-statements/

简单的回顾一下基本环境的搭建:

首先安装Mariadb(我的环境是CentOS7)

yum install mariadb*
systemctl start mariadb

配置防火墙

firewall-cmd --add-port=3306/tcp --permanent
systemctl restart firewalld

配置root密码

mysqladmin -u root password ‘mysql‘
mysql -uroot -p

创建一个测试用的数据库和表

MariaDB [(none)]> create database mydb;
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> use mydb
Database changed
MariaDB [mydb]> create table student(id int not null auto_increment,name varchar(10), primary key(id));
Query OK, 0 rows affected (0.04 sec)

MariaDB [mydb]> insert into student(name) values(‘Jay‘),(‘Bob‘),(‘Alex‘);
Query OK, 3 rows affected (0.00 sec)
Records: 3  Duplicates: 0  Warnings: 0

MariaDB [mydb]> select * from student;
+----+------+
| id | name |
+----+------+
|  1 | Jay  |
|  2 | Bob  |
|  3 | Alex |
+----+------+
3 rows in set (0.00 sec)

创建一个远程访问的账户

MariaDB [(none)]> create user [email protected];
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> set password for [email protected]‘10.2.100.60‘=password(‘yli‘);
Query OK, 0 rows affected (0.01 sec)
MariaDB [(none)]> grant all privileges on mydb.* to [email protected];
Query OK, 0 rows affected (0.00 sec)

然后安装一个图形界面的工具Navicat,绑定数据库

这样一个基本的测试环境就搭建好了。

现在来看看pymysql的使用。

在我的客户端安装一下pymysql的模块

C:\WINDOWS\system32>pip install pymysql
Collecting pymysql
  Downloading PyMySQL-0.7.9-py3-none-any.whl (78kB)
    100% |################################| 81kB 610kB/s
Installing collected packages: pymysql
Successfully installed pymysql-0.7.9

Python源码演示

查询

#!/usr/bin/env python
# -*- coding:utf-8 -*-
import pymysql
#打开数据库连接
conn = pymysql.connect(host=‘sydnagios‘, port=3306, user=‘yli‘, passwd=‘yli‘, db=‘mydb‘)
#创建一个游标对象
cursor = conn.cursor(cursor=pymysql.cursors.DictCursor)
#SQL查询
cursor.execute("select * from student")
# 获取第一行数据
# row_1 = cursor.fetchone()
# print(row_1)
# 获取前n行数据
# row_2 = cursor.fetchmany(3)
# 获取所有数据
row_3 = cursor.fetchall()
print(row_3)
#scroll可以使用相对位置或者绝对位置,这里相对位置(末尾)向上移动2行
cursor.scroll(-2,mode=‘relative‘)
row_3 = cursor.fetchall()
print(row_3)
#提交,不然无法保存新的数据
conn.commit()
#关闭游标
cursor.close()
#关闭连接
conn.close()
-----------
[{‘id‘: 1, ‘name‘: ‘Jay‘}, {‘id‘: 2, ‘name‘: ‘Bob‘}, {‘id‘: 3, ‘name‘: ‘Alex‘}]
[{‘id‘: 2, ‘name‘: ‘Bob‘}, {‘id‘: 3, ‘name‘: ‘Alex‘}]

修改

#!/usr/bin/env python
# -*- coding:utf-8 -*-
import pymysql
conn = pymysql.connect(host=‘sydnagios‘, port=3306, user=‘yli‘, passwd=‘yli‘, db=‘mydb‘)
cursor = conn.cursor(cursor=pymysql.cursors.DictCursor)
cursor.execute("Update student set name=‘BoB‘ where id=2")
cursor.execute("select * from student")
row_3 = cursor.fetchall()
print(row_3)
conn.commit()
cursor.close()
conn.close()
----------
[{‘id‘: 1, ‘name‘: ‘Chris‘}, {‘id‘: 2, ‘name‘: ‘BoB‘}, {‘id‘: 3, ‘name‘: ‘Alex‘}]

删除

#!/usr/bin/env python
# -*- coding:utf-8 -*-
import pymysql
conn = pymysql.connect(host=‘sydnagios‘, port=3306, user=‘yli‘, passwd=‘yli‘, db=‘mydb‘)
cursor = conn.cursor(cursor=pymysql.cursors.DictCursor)
cursor.execute("delete from student where id=2")
cursor.execute("select * from student")
row_3 = cursor.fetchall()
print(row_3)
conn.commit()
cursor.close()
conn.close()
----------
[{‘id‘: 1, ‘name‘: ‘Chris‘}, {‘id‘: 2, ‘name‘: ‘BoB‘}, {‘id‘: 3, ‘name‘: ‘Alex‘}]

添加

#!/usr/bin/env python
# -*- coding:utf-8 -*-
import pymysql
conn = pymysql.connect(host=‘sydnagios‘, port=3306, user=‘yli‘, passwd=‘yli‘, db=‘mydb‘)
cursor = conn.cursor(cursor=pymysql.cursors.DictCursor)
cursor.execute("insert into student(name) value (‘ZhangSan‘),(‘LiSi‘)")
cursor.execute("select * from student")
row_3 = cursor.fetchall()
print(row_3)
conn.commit()
cursor.close()
conn.close()
----------
[{‘name‘: ‘Chris‘, ‘id‘: 1}, {‘name‘: ‘Alex‘, ‘id‘: 3}, {‘name‘: ‘ZhangSan‘, ‘id‘: 4}, {‘name‘: ‘LiSi‘, ‘id‘: 5}]
时间: 2024-12-24 19:19:04

Python 学习笔记 - 操作MySQL的相关文章

python学习之操作mysql

欢迎点击个人博客 http://www.iwangzheng.com/ 刚开始学python,所以很多代码都需要在ipython里尝试一下.今天记录的是最基本的操作mysql数据库. 写数据库连接操作的时候,仿佛回到了当年在前两家公司写asp.net的感觉. 1.首先在mysql数据库里新建个数据库 create database db_02 default charset utf8; create table user (id int auto_increment primary key,us

[Python] 学习笔记之MySQL数据库操作

1 Python标准数据库接口DB-API介绍 Python标准数据库接口为 Python DB-API,它为开发人员提供了数据库应用编程接口.Python DB-API支持很多种的数据库,你可以选择跟自己项目相关的数据库.Python DB-API支持的数据库如下所示: GadFly mSQL MySQL PostgreSQL Microsoft SQL Server 2000 Informix Interbase Oracle Sybase 不同的数据库你需要下载不同的DB API模块,例如

Python学习之==>操作MySQL

一.简介: MySQL为关系型数据库,其他关系型数据库包括Oracle.DB2.Sql Server等等.Python操作MySQL需要使用到pymsyql模块,pip安装即可. 二.操作MySQL步骤 1.连上数据库(IP.端口号.用户名.密码.数据库名) 2.建立游标 3.执行sql 4.获取结果 5.关闭游标 6.关闭连接 1 import pymysql 2 conn = pymysql.connect( 3 host='192.168.1.112', 4 user='test', 5

【python学习】操作mysql

1.首先你得有一个mysql软件 [[email protected] mysql_test]# mysql -u root -p Enter password:  Welcome to the MySQL monitor.  Commands end with ; or \g. Your MySQL connection id is 14 Server version: 5.7.11 MySQL Community Server (GPL) Copyright (c) 2000, 2016, 

python学习笔记 操作文件和目录

如果我们要操作文件.目录,可以在命令行下面输入操作系统提供的各种命令来完成.比如dir.cp等命令. 如果要在Python程序中执行这些目录和文件的操作怎么办?其实操作系统提供的命令只是简单地调用了操作系统提供的接口函数,Python内置的os模块也可以直接调用操作系统提供的接口函数. 打开Python交互式命令行,我们来看看如何使用os模块的基本功能: >>> import os >>> os.name # 操作系统类型 'posix' 如果是posix,说明系统是L

Python学习笔记-操作excel

python操作excel:使用pip安装即可 一.xlwt:写excel import xlwt book = xlwt.Workbook() #新建一个excel sheet = book.add_sheet('sheet1') #加sheet页 sheet.write(0,0,'姓名') #行.列.写入的内容 sheet.write(0,1,'年龄') sheet.write(0,2,'性别') book.save('stu.xls') #结尾一定要用.xls import xlwt ti

Python学习笔记进阶篇——总览

Python学习笔记——进阶篇[第八周]———进程.线程.协程篇(Socket编程进阶&多线程.多进程) Python学习笔记——进阶篇[第八周]———进程.线程.协程篇(异常处理) Python学习笔记——进阶篇[第八周]———进程.线程.协程篇(多线程与进程池) Python学习笔记——进阶篇[第九周]———线程.进程.协程篇(队列Queue和生产者消费者模型) Python学习笔记——进阶篇[第九周]———协程 Python学习笔记——进阶篇[第九周]———MYSQL操作

python   学习笔记 (核心)

python    学习笔记 (核心) Python解释器从头到尾一行接一行执行脚本 # -*- coding: UTF-8 -*-    //字符编码 不区分单引号和双引号,x='hello',x[0],x[-1]指最后一个字符,x[2:4]取子串, '''hello''' #hello三引号会保留文本输入时的换行符制表符等不需要转义,用于多行原样输入保存 'hello'+'world' #字符串拼接,'hello'*2 #字符串重复 help(fun) #帮助,help(module.met

OpenCV之Python学习笔记

OpenCV之Python学习笔记 直都在用Python+OpenCV做一些算法的原型.本来想留下发布一些文章的,可是整理一下就有点无奈了,都是写零散不成系统的小片段.现在看 到一本国外的新书<OpenCV Computer Vision with Python>,于是就看一遍,顺便把自己掌握的东西整合一下,写成学习笔记了.更需要的朋友参考. 阅读须知: 本文不是纯粹的译文,只是比较贴近原文的笔记:         请设法购买到出版社出版的书,支持正版. 从书名就能看出来本书是介绍在Pytho