• python mysql基本操作


    #链接mysql
    #插入数据
    import MySQLdb

    conn = MySQLdb.connect(host = '127.0.0.1',user = 'root',passwd = '',db = 'mytest')
    cur = conn.cursor()
    reConn = cur.execute("insert into userinfo(id,name) value(3,'tony')")
    conn.commit()
    cur.close()
    conn.close()

    print reConn

    #查询数据
    import MySQLdb

    conn = MySQLdb.connect(host = '127.0.0.1',user = 'root',passwd = '',db = 'mytest')
    cur = conn.cursor(cursorclass=MySQLdb.cursors.DictCursor) #以字典形式获取数据
    cur = conn.cursor() #以元组形式获取数据
    #reConn = cur.execute("select * from userinfo")
    sql = "select name from userinfo where id = %s"
    #sql = "select id from userinfo where id = %s"
    params = 1
    #params = 'dendi'
    #reConn = cur.execute(sql,params)
    reConn = cur.execute("select * from userinfo")
    #fetchall把查找到的数据一下拿出来
    #fetchone逐个取数据
    # data = cur.fetchall()
    data = cur.fetchone()
    print data
    data = cur.fetchone()
    print data
    cur.close()
    conn.close()
    # print data
    print reConn

    #更新数据
    import MySQLdb

    conn = MySQLdb.connect(host = '127.0.0.1',user = 'root',passwd = '',db = 'mytest')
    cur = conn.cursor()
    sql = "update userinfo set name = 'aaa' where id = '%s'"
    params = 1
    reConn = cur.execute(sql,params)
    conn.commit()
    #conn.rollback()
    cur.close()
    conn.close()

    print reConn

    #删除数据
    import MySQLdb

    conn = MySQLdb.connect(host = '127.0.0.1',user = 'root',passwd = '',db = 'mytest')
    cur = conn.cursor()
    sql = "delete from userinfo where id = '%s'"
    params = 1
    reConn = cur.execute(sql,params)
    conn.commit()
    #conn.rollback()
    cur.close()
    conn.close()

    print reConn



    参考博客:http://www.cnblogs.com/wupeiqi/articles/4198124.html
  • 相关阅读:
    python mysqldb 模块学习
    接口自动化学习笔记
    unittest 单元测试框架断言方法
    Python+Django+Bootstrap 框架环境搭建
    Django CSRF cookie not set.错误
    django安装与卸载
    jmeter+ant+jenkins接口自动环境搭建
    jmeter 非GUI模式下测试报错An error occurred: Unknown arg:
    非 GUI 模式运行 JMeter 压力测试
    Android SDK开发包国内下载地址
  • 原文地址:https://www.cnblogs.com/3one/p/5601818.html
Copyright © 2020-2023  润新知