1. <legend id='iX2S0'><style id='iX2S0'><dir id='iX2S0'><q id='iX2S0'></q></dir></style></legend>
    <i id='iX2S0'><tr id='iX2S0'><dt id='iX2S0'><q id='iX2S0'><span id='iX2S0'><b id='iX2S0'><form id='iX2S0'><ins id='iX2S0'></ins><ul id='iX2S0'></ul><sub id='iX2S0'></sub></form><legend id='iX2S0'></legend><bdo id='iX2S0'><pre id='iX2S0'><center id='iX2S0'></center></pre></bdo></b><th id='iX2S0'></th></span></q></dt></tr></i><div id='iX2S0'><tfoot id='iX2S0'></tfoot><dl id='iX2S0'><fieldset id='iX2S0'></fieldset></dl></div>
  2. <tfoot id='iX2S0'></tfoot>
        <bdo id='iX2S0'></bdo><ul id='iX2S0'></ul>

      <small id='iX2S0'></small><noframes id='iX2S0'>

      python数据库操作指南之PyMysql使用详解

      时间:2023-12-07
      <tfoot id='GnUBK'></tfoot>

      • <bdo id='GnUBK'></bdo><ul id='GnUBK'></ul>
            <legend id='GnUBK'><style id='GnUBK'><dir id='GnUBK'><q id='GnUBK'></q></dir></style></legend>
              <tbody id='GnUBK'></tbody>
            <i id='GnUBK'><tr id='GnUBK'><dt id='GnUBK'><q id='GnUBK'><span id='GnUBK'><b id='GnUBK'><form id='GnUBK'><ins id='GnUBK'></ins><ul id='GnUBK'></ul><sub id='GnUBK'></sub></form><legend id='GnUBK'></legend><bdo id='GnUBK'><pre id='GnUBK'><center id='GnUBK'></center></pre></bdo></b><th id='GnUBK'></th></span></q></dt></tr></i><div id='GnUBK'><tfoot id='GnUBK'></tfoot><dl id='GnUBK'><fieldset id='GnUBK'></fieldset></dl></div>
          1. <small id='GnUBK'></small><noframes id='GnUBK'>

                Python数据库操作指南之PyMysql使用详解

                什么是Python数据库操作指南之PyMysql使用?

                PyMysql是Python操作MySQL数据库的一个模块,它可以方便的进行数据库的连接、查询、增加、修改、删除等操作,是非常常用的Python数据库操作模块之一。

                本文将详细介绍Python数据库操作指南之PyMysql使用。

                PyMysql的安装

                在使用PyMysql之前,需要先安装PyMysql模块。可以使用pip命令进行安装:

                pip install PyMySQL
                

                PyMysql的连接

                使用PyMysql连接数据库需要以下步骤:

                • 导入PyMysql模块
                • 创建数据库连接
                • 创建游标对象

                下面是使用PyMysql连接数据库的示例:

                import pymysql
                
                # 创建数据库连接
                db = pymysql.connect(host="localhost", user="root", password="123456", db="test")
                
                # 创建游标对象
                cursor = db.cursor()
                
                # 关闭数据库连接
                db.close()
                

                其中,host表示数据库的地址(本地的话为localhost),user表示数据库的用户名,password表示数据库的密码,db表示要连接的数据库名。

                PyMysql的查询操作

                使用PyMysql进行查询操作需要以下步骤:

                • 创建查询语句
                • 执行查询语句
                • 获取结果

                下面是使用PyMysql进行查询操作的示例:

                import pymysql
                
                # 创建数据库连接
                db = pymysql.connect(host="localhost", user="root", password="123456", db="test")
                
                # 创建游标对象
                cursor = db.cursor()
                
                # 查询语句
                sql = "SELECT * FROM users"
                
                try:
                    # 执行SQL语句
                    cursor.execute(sql)
                    # 获取所有记录列表
                    results = cursor.fetchall()
                    # 打印结果
                    for row in results:
                        id = row[0]
                        username = row[1]
                        password = row[2]
                        print(f"id: {id}, username: {username}, password: {password}")
                except:
                    print("Error: unable to fetch data")
                
                # 关闭数据库连接
                db.close()
                

                上面的代码中,fetchall()方法可以获取所有查询结果,返回的是一个元组,每一个元组是一条记录。

                PyMysql的增加操作

                使用PyMysql进行添加操作需要以下步骤:

                • 创建数据库连接
                • 创建游标对象
                • 创建添加语句
                • 执行添加语句
                • 提交事务

                下面是使用PyMysql进行添加操作的示例:

                import pymysql
                
                # 创建数据库连接
                db = pymysql.connect(host="localhost", user="root", password="123456", db="test")
                
                # 创建游标对象
                cursor = db.cursor()
                
                # 添加语句
                sql = "INSERT INTO users(username, password) VALUES ('alice', '123456')"
                
                try:
                    # 执行SQL语句
                    cursor.execute(sql)
                    # 提交事务
                    db.commit()
                    print("Add data successfully")
                except:
                    # 回滚事务
                    db.rollback()
                    print("Error: unable to add data")
                
                # 关闭数据库连接
                db.close()
                

                上面的代码中,commit()方法用于提交事务,rollback()方法用于回滚事务。

                PyMysql的修改操作

                使用PyMysql进行修改操作需要以下步骤:

                • 创建数据库连接
                • 创建游标对象
                • 创建修改语句
                • 执行修改语句
                • 提交事务

                下面是使用PyMysql进行修改操作的示例:

                import pymysql
                
                # 创建数据库连接
                db = pymysql.connect(host="localhost", user="root", password="123456", db="test")
                
                # 创建游标对象
                cursor = db.cursor()
                
                # 修改语句
                sql = "UPDATE users SET password='1234567' WHERE username='alice'"
                
                try:
                    # 执行SQL语句
                    cursor.execute(sql)
                    # 提交事务
                    db.commit()
                    print("Update data successfully")
                except:
                    # 回滚事务
                    db.rollback()
                    print("Error: unable to update data")
                
                # 关闭数据库连接
                db.close()
                

                PyMysql的删除操作

                使用PyMysql进行删除操作需要以下步骤:

                • 创建数据库连接
                • 创建游标对象
                • 创建删除语句
                • 执行删除语句
                • 提交事务

                下面是使用PyMysql进行删除操作的示例:

                import pymysql
                
                # 创建数据库连接
                db = pymysql.connect(host="localhost", user="root", password="123456", db="test")
                
                # 创建游标对象
                cursor = db.cursor()
                
                # 删除语句
                sql = "DELETE FROM users WHERE username='alice'"
                
                try:
                    # 执行SQL语句
                    cursor.execute(sql)
                    # 提交事务
                    db.commit()
                    print("Delete data successfully")
                except:
                    # 回滚事务
                    db.rollback()
                    print("Error: unable to delete data")
                
                # 关闭数据库连接
                db.close()
                

                结论

                通过本文的介绍,我们了解了 PyMysql 的基本使用,包括连接、查询、增加、修改、删除等操作。使用 PyMysql,可以方便的进行 MySQL 数据库的操作。

                以上是本文完整攻略,希望能对你有所帮助。

                上一篇:django 删除数据库表后重新同步的方法 下一篇:Spring Boot集成Druid出现异常报错的原因及解决

                相关文章

                <small id='Ln40K'></small><noframes id='Ln40K'>

              1. <legend id='Ln40K'><style id='Ln40K'><dir id='Ln40K'><q id='Ln40K'></q></dir></style></legend>

                    <bdo id='Ln40K'></bdo><ul id='Ln40K'></ul>
                1. <tfoot id='Ln40K'></tfoot>

                2. <i id='Ln40K'><tr id='Ln40K'><dt id='Ln40K'><q id='Ln40K'><span id='Ln40K'><b id='Ln40K'><form id='Ln40K'><ins id='Ln40K'></ins><ul id='Ln40K'></ul><sub id='Ln40K'></sub></form><legend id='Ln40K'></legend><bdo id='Ln40K'><pre id='Ln40K'><center id='Ln40K'></center></pre></bdo></b><th id='Ln40K'></th></span></q></dt></tr></i><div id='Ln40K'><tfoot id='Ln40K'></tfoot><dl id='Ln40K'><fieldset id='Ln40K'></fieldset></dl></div>