• Python 对Mysql的操作


    Mysql链接不同的数据库

      

      如果python的模板是按照mysql来写的,后面数据库更换为了Oracle,难道需要重现再来写,当然不是,python提供了API接口,只要编写是面对api,后面的链接会有api去完成。

      接口文档

      

      

    Python连接数据库的七个步骤

    Mysql链接的形象案例

      

    Mysql的链接过程

      

    1、导入模块

    >>> import MySQLdb #因为里面有大小写,可以使用as mysql使之简化

      python2.x中用习惯了mysqldb,但是在python3.x中已经不支持那个组件了。取而代之的是pymysql

    2、创建连接

    >>> conn = MySQLdb.connect(host='59.110.12.72' , port=3306 , user='******',passwd='******',db='kk3',
        charset='utf8')

      

      connection 对象支持的方法:

      

    3、获取游标

    >>> cur = conn.cursor()

      数据库游标支持的方法:

      

    4、执行操作

    >>> cur.execute('select * from accesslog')                                                          
    >>> cur.fetchall() #用它来读取,在数据库取出的数据                                                       
    >>> cur.execute("insert into accesslog(log_date,ip,url,status) values('2016-10-11','2,2,2,2',       
        'http://www.baidu.com/a',200);")

      这里如果print cur.execute 是显示的受影响的行

      

    5、数据提交/数据读取

    @select只用读取数据,不影响数据库,不需要提交数据                                                          
    @update,delete,insert 这些操作类型,需要提交数据                                                       
    >>> conn.commit() #插入的数据需要commit下才能提交到数据库里面

    6、关闭游标

    >>> cur.close()

    7、关闭连接

    >>> conn.close()


    返回mysql目录

  • 相关阅读:
    Getting Started with LINQ in C# 章节概况
    LA 2572 Viva Confetti (Geometry.Circle)
    uva 10652 Board Wrapping (Convex Hull, Easy)
    poj 2743 && LA 3403 Mobile Computing (mideasy Search)
    poj 3525 Most Distant Point from the Sea (DC2 + Half Plane)
    poj 3134 && LA 3621 Power Calculus (迭代加深深度优先搜索)
    LA 4728 Squares (二维凸包+旋转卡壳)
    uva 10256 The Great Divide (Convex Hull, Simple)
    hdu 2454 Degree Sequence of Graph G
    poj 1041 John's trip (Euler Circuit)
  • 原文地址:https://www.cnblogs.com/nopnog/p/7172002.html
Copyright © 2020-2023  润新知