Python3 --- MySQL交互

一、PyCharm安装MySQL

在pycharm编辑器中,[File]-[Settings]-[Project Interpreter]中点击加号,进行搜索安装,如图:



搜索PyMySQL进行安装,如图:


注意:

使用pycharm编辑器在python3与mysql进行交互,需要安装python扩展包pymysql,python3只能安装pymql,不能安装mysql-python包,只有Python2可以。


二、Python3操作MySQL

import pymysql

class MysqlUtils():
    def __init__(self,host,port,db,user,passwd,charset='utf8'):
        self.host=host
        self.port=port
        self.db=db
        self.user=user
        self.passwd=passwd
        self.charset=charset

    def connect(self):
        self.conn=pymysql.connect(host=self.host,port=self.port,db=self.db,user=self.user,passwd=self.passwd,charset=self.charset)
        self.cursor=self.conn.cursor()

    def close(self):
        self.cursor.close()
        self.conn.close()

    def get_one(self,sql,params=()):
        result=None
        try:
            self.connect()
            self.cursor.execute(sql, params)
            result = self.cursor.fetchone()
            self.close()
        except Exception as e:
            print(e)
        return result

    def get_all(self,sql,params=()):
        list=()
        try:
            self.connect()
            self.cursor.execute(sql,params)
            list=self.cursor.fetchall()
            self.close()
        except Exception as e:
            print(e)
        return list

    def insert(self,sql,params=()):
        return self.__edit(sql,params)

    def update(self, sql, params=()):
        return self.__edit(sql, params)

    def delete(self, sql, params=()):
        return self.__edit(sql, params)

    def __edit(self,sql,params):
        count=0
        try:
            self.connect()
            count=self.cursor.execute(sql,params)
            self.conn.commit()
            self.close()
        except Exception as e:
            print(e)
        return count

sql='insert into test(id,type) values(%s,%s)'
username=input("请输入id:")
gender=input("请输入type:")
params=[username,gender]

mysqlHelper=MysqlUtils('localhost',3306,'test','root','root')
count=mysqlHelper.insert(sql,params)
if count==1:
    print('ok')
else:
    print('error')

2.1、Connection对象

用于建立与数据库的连接,创建对象:调用connect()方法:
conn=connect(参数列表)

  • 参数host:连接的mysql主机,如果本机是'localhost'
  • 参数port:连接的mysql主机的端口,默认是3306
  • 参数db:数据库的名称
  • 参数user:连接的用户名
  • 参数password:连接的密码
  • 参数charset:通信采用的编码方式,默认是'gb2312',要求与数据库创建时指定的编码一致,否则中文会乱码


connection对象的方法:

  • close()关闭连接
  • commit()事务,所以需要提交才会生效
  • rollback()事务,放弃之前的操作
  • cursor()返回Cursor对象,用于执行sql语句并获得结果


2.2、Cursor对象

执行sql语句,创建对象:调用Connection对象的cursor()方法
cursor = conn.cursor()


cursor对象的方法:

  • close()关闭
  • execute(operation [, parameters ])执行语句,返回受影响的行数
  • fetchone()执行查询语句时,获取查询结果集的第一个行数据,返回一个元组
  • next()执行查询语句时,获取当前行的下一行
  • fetchall()执行查询时,获取结果集的所有行,一行构成一个元组,再将这些元组装入一个元组返回
  • scroll(value[,mode])将行指针移动到某个位置
  •     mode表示移动的方式
  •     mode的默认值为relative,表示基于当前行移动到value,value为正则向下移动,value为负则向上移动
  •     mode的值为absolute,表示基于第一条数据的位置,第一条数据的位置为0


cursor对象的属性:

  • rowcount只读属性,表示最近一次execute()执行后受影响的行数
  • connection获得当前连接对象


猜你喜欢

转载自blog.csdn.net/Ka_Ka314/article/details/80731431
今日推荐