python 连接postgresql TypeError:must be str,not int

本文主要介绍下python连接postgresql如何操作,以及往数据库表插数时,有些字段可能不是char或者text格式的而是int时,会报错TypeError:must be str,not int。要在python里转成str才行。话不多说,直接看代码!

#!/usr/bin/env python
# -*- coding: utf-8 -*
import psycopg2
# 填写连接数据库的参数
conn = psycopg2.connect(database="db", user="xiaoshu", password="20200521", host="abcdefg", port="1234")
cur = conn.cursor()
cur.execute("select id,name,score from customer ;")  # 连接数据库要执行的sql语句
rows = cur.fetchall()  # rows是list,每行记录也是list存储
for r in rows
    id=r[0]#id是int格式
    name = r[1].strip()
    score = r[2]#score是int格式
    # 因为id和score都是int,在python里要转成str才可以链接
    cur.execute("insert into A(id,name,score) values(" + str(id) + ",'"+name+"'," + str(score) + ");")
conn.commit()
cur.close
conn.close

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值