Python3操作数据库

参考:

https://www.cnblogs.com/woider/p/5926744.html

https://www.cnblogs.com/mooba/p/6484357.html

http://www.runoob.com/python3/python3-mysql.html

PyMySQL 是在 Python3.x 版本中用于连接 MySQL 服务器的一个库,Python2中则使用mysqldb。

通常使用的方法包括:连接、建表、增删查改、事务处理。

# -*- coding: utf-8 -*-

import pymysql
import pymysql.cursors

connect = pymysql.Connect(host='',    # 远程主机的IP地址
                          user='',    # MySQL用户名
                          db='',      # 数据库名字
                          passwd='',  # 数据库密码
                          port=3306,  # 数据库监听端口,默认3306
                          charset='utf8',)  # 指定编码
# 创建游标对象
cursor = connect.cursor()

# 使用SQL语句
sql = ""
try:
    cursor.execute(sql)     # 执行SQL语句
    # db.commit()  #  若修改数据需要执行此操作
    data = cursor.fetchall()      # 获取cursor得到的数据
    # for row in data:

except:
    connect.rollback()  # 若发生错误则回滚

# 关闭连接
cursor.close()
connect.close()
sql语句备注:
SELECT message FROM fcomment; 

ALTER TABLE fcomment ADD column sentiment VARCHAR(10) AFTER message;

UPDATE fcomment SET sentiment = '%s' WHERE id='" + i + "';
将Dataftame写入MySQL数据库

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值