• pymysql基本使用


    导入模块

    import pymysql

    连接(看一下password有没有,没有的话会怎么样,有很多参数,有些参数也是可以不传的)

    conn = pymysql.connect(user = "root",host = "127.0.0.1",port = 3306,charset = "utf8",database = "day36")

    产生一个游标对象

    #cursor = pymysql.cursor.DictCursor 将查询出来的结果制作成字典的形式返回

    cursor = conn.cursor(cursor = pymysql.cursor.Dictcursor)

    sql = "select * from userinfo"

    #执行sql语句

    res = cursor.execute(sql)

    print(res)  #execute返回的是当前sql影响的行数

    #只获取查询数据中的一条数据

    ret = cursor.fetchone()

    #获取查询数据中的所有数据

    ret = cursor.fetchall()

    #指定获取几个数据,超过了也不会报错

    ret = cursor.fetchmany(10)

    print(ret)

    #相对移动

    cursor.scroll(2,"relative")        #基于指针所在的位置,往后偏移两个单位

    cursor.scroll(2,"absolute")    #基于指针起始位置,往后偏移两个单位

    print(cursor.fetchall())

  • 相关阅读:
    ZZ 一些有意思的算法代码
    ff 怎样让新打开的标签就放在当前页面的右边
    111
    Windows平台下GO语言编译器(GOwindows)
    My Bookmarks
    使用googleperftools的tcmalloc
    memcached安装及测试
    erlang 入门(1)
    MS UI Automation
    twisted: echo server
  • 原文地址:https://www.cnblogs.com/medigrat/p/12049709.html
Copyright © 2020-2023  润新知