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

标题: 使用PYTHON查询PG中的表 [打印本页]

作者: 郑全    时间: 2023-12-10 18:54
标题: 使用PYTHON查询PG中的表

1.sql语句   [postgres@eulersvr ~]$ cat query.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="""select * from emp;"""

   cursor.execute(sql)

   row=cursor.fetchone()

   print (row)

   conn.commit()

   cursor.close()

   conn.close()

2.执行SQL
   [postgres@eulersvr ~]$ python3 query.py
   (1, 100, 'mahan')
[postgres@eulersvr ~]$








欢迎光临 重庆思庄Oracle、Redhat认证学习论坛 (http://bbs.cqsztech.com/) Powered by Discuz! X3.2