重庆思庄Oracle、Redhat认证学习论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 482|回复: 0
打印 上一主题 下一主题

python 访问PG,异常处理

[复制链接]
跳转到指定楼层
楼主
发表于 2023-12-10 19:19:25 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
1.语句

  [postgres@eulersvr ~]$ cat except.py
# _*_ coding:utf-8 _*_
import psycopg2

conn= psycopg2.connect(database="postgres",user="postgres",password="postgres",host="192.168.0.38",port="5432")

cursor=conn.cursor()
sql="""delete  from emp1; """

params=(100,)

try:
  cursor.execute(sql,params)

except psycopg2.Error as er:
      print(er)

conn.commit()

cursor.close()

conn.close()

2.执行

  [postgres@eulersvr ~]$ python3 except.py
relation "emp1" does not exist
LINE 1: delete  from emp1;
                     ^

[postgres@eulersvr ~]$

3.验证

  [postgres@eulersvr ~]$ psql
psql (16.1)
Type "help" for help.

postgres=#
postgres=#
postgres=# \d
                 List of relations
Schema |        Name         |   Type   |  Owner   
--------+---------------------+----------+----------
public | emp                 | table    | postgres
public | emp_id_seq          | sequence | postgres
public | employees           | table    | postgres
public | employees_empid_seq | sequence | postgres
(4 rows)


我这里确实没有emp1 ,所以报错。

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 支持支持 反对反对
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|手机版|小黑屋|重庆思庄Oracle、Redhat认证学习论坛 ( 渝ICP备12004239号-4 )

GMT+8, 2024-4-30 08:02 , Processed in 0.097659 second(s), 19 queries .

重庆思庄学习中心论坛-重庆思庄科技有限公司论坛

© 2001-2020

快速回复 返回顶部 返回列表