zoukankan      html  css  js  c++  java
  • python 操作数据库

    使用Python操作MySQL数据库这里我们需要用到三方库PyMySQl

    安装方法:pip install pymysql

    import pymysql
    
    # 1. 建立连接
    conn = pymysql.connect(host='127.0.0.1',
                        port=3306,
                        user='root',
                        passwd='123456',   # password也可以
                        db='api_test',
                        charset='utf8')   # 如果查询有中文需要指定数据库编码
                        
    # 2. 从连接建立游标(有了游标才能操作数据库)
    cursor = conn.cursor()
    
    # 3. 查询数据库(读)
    cursor.execute("select * from user where name='张三'")
    
    # 4. 获取查询结果
    result = cursor.fetchall()
    
    # 4. 提交更改
    conn.commit()  # 注意是用的conn不是cursor
    
    # 5. 关闭游标及连接
    cursor.close()
    conn.close()
    猪猪侠要努力呀!
  • 相关阅读:
    菜根谭#298
    菜根谭#297
    菜根谭#296
    菜根谭#295
    菜根谭#294
    菜根谭#293
    菜根谭#292
    菜根谭#291
    菜根谭#290
    菜根谭#289
  • 原文地址:https://www.cnblogs.com/mlllily/p/11238079.html
Copyright © 2011-2022 走看看