zoukankan      html  css  js  c++  java
  • Python学习笔记六:数据库操作

    一:Python操作数据库的流程

    二:开发环境准备

    1:开发工具PyCharm

    2:Python操作mysql的工具:需要安装Python-Mysql Connector,网址:https://sourceforge.net/projects/mysql-python/ ,下载完成后点击启动安装即可。

    3:数据库桌面工具:SQLYog

    三:Python操作数据库的两大对象之数据库连接对象——Connection

    connection主要用于建立Python与数据库之间的网络连接。

    创建方法:MySQLdb.Connect(参数)

    参数列表主要有:

    数据库连接对象常用方法:

    测试:

    import MySQLdb
    
    conn = MySQLdb.connect(host="127.0.0.1",port=3306,user="root",passwd='root',db='testpython',charset='utf8')
    cur=conn.cursor()
    
    print conn
    print cur
    
    cur.close()
    conn.close()
    
    
    结果:
    <_mysql.connection open to '127.0.0.1' at 2a449b8>
    <MySQLdb.cursors.Cursor object at 0x02AE8A10>

    四:Python操作数据库的两大对象之数据库连接对象——Cursor

    游标对象Cursor,用于执行具体的数据库操作语句以及获取结果。

    cursor支持以下方法调用:

    三个fetchXX方法,可以对 execute方法执行的结果进行遍历;rowcount方法可以获取execute方法对数据库操作的记录行数。

    五:增删查改操作

    查:主要使用execute()/fetchXX语句;

    增、改、删:需要关闭自动提交事务(MySQLdb模块默认关闭了自动提交)、使用execute()语句执行操作、捕捉异常进行回滚/执行完毕提交事务

    import MySQLdb
    
    #1:创建数据库连接
    conn = MySQLdb.connect(host="127.0.0.1",port=3306,user="root",passwd='root',db='testpython',charset='utf8')
    #2:创建cursor
    cur=conn.cursor()
    
    #3:使用cursor执行查询
    cur.execute("select * from test")
    first=cur.fetchone()
    print first
    
    #4:在try-except语句块中执行增、删、改操作
    try:
        cur.execute("insert into test(say) VALUES ('the first content')")
        print cur.rowcount
    
        cur.execute("update test set say='I have been updated' where id = 1")
        print cur.rowcount
    
        cur.execute("select * from test")
        all = cur.fetchall()
        print all
    
        cur.execute("delete from test where id = 1")
        print cur.rowcount
    
        cur.execute("select * from test")
        all = cur.fetchall()
        print all
    #5:提交事务
        conn.commit()
    except Exception:
    #6:捕捉异常进行回滚
        conn.rollback()
    finally:
    #7:关闭cursor和connection
        cur.close()
        conn.close()
  • 相关阅读:
    Linux 下安装配置 JDK7
    win7下virtualbox装linux共享win7文件问题(已测试可用)
    Linix常用命令
    JAVA命令大全
    virtualbox 不能为虚拟电脑打开一个新任务/VT-x features locked or unavailable in MSR.
    VirtualBox下安装rhel5.5 linux系统
    redhat RHEL 5.5 下载地址
    ios开发@selector的函数如何传参数/如何传递多个参数
    U盘10分钟安装linux系统
    史上最浅显易懂的Git分布式版本控制系统教程
  • 原文地址:https://www.cnblogs.com/ygj0930/p/6961499.html
Copyright © 2011-2022 走看看