美文网首页
python3使用mysql

python3使用mysql

作者: daos | 来源:发表于2017-10-12 17:42 被阅读0次

    pymysql

    在python3.x中可以使用pymysql 操作mysql ,python2.x中可以使用mysqldb
    安装:
    下载地址:https://github.com/PyMySQL/PyMySQL
    也可以使用pip3安装:

    安装方式

    #pip3 install PyMySQL
    

    如果你的系统不支持 pip 命令,可以使用以下方式安装:
    1、使用 git 命令下载安装包安装或者手动下载:
    $ git clone https://github.com/PyMySQL/PyMySQL
    $ cd PyMySQL/
    $ python3 setup.py install

    使用方式

    db = pymysql.connect(host = 'localhost',user='root', password = 'pass',db = 'dbname',charset='utf8mb4')
    id = 1
    sql = "select * from post where id= '%d'" % (id)
    cursor.execute(sql)
    data = cursor.fetchone()
    print("%s" % data[0])
    

    参考文档:
    https://github.com/PyMySQL/PyMySQL
    http://pymysql.readthedocs.io/en/latest/

    相关文章

      网友评论

          本文标题:python3使用mysql

          本文链接:https://www.haomeiwen.com/subject/tseoyxtx.html