Skip to content

Latest commit

 

History

History
86 lines (55 loc) · 1.93 KB

492-901945-单句执行模式.sy.md

File metadata and controls

86 lines (55 loc) · 1.93 KB
show version enable_checker
step
1.0
true

psycopg3

回忆

  • 上次使用了游标
  • 通过游标
    • 可以得到select查询的结果集
  • 这样我们就可以
    • 通过python语言
      • 直接操作postgres了

图片描述

  • psycopg还有什么好玩的吗🤔

单句执行

图片描述

  • 可以去试试

图片描述

  • 代码如下
import psycopg

conninfo = "postgres://postgres:oeasypg@localhost:5432/oeasydb"
print(psycopg.connect(conninfo).execute("SELECT now()").fetchone()[0])

运行结果

  • 最开始的时候会报错
    • 因为后台还没有将pg启动起来

图片描述

  • 稍微等待
    • 等pg 服务启动起来之后
      • 就可以 通过这种一句的方式
        • 进行连接了

图片描述

  • 可以从数据库里面查询到数据吗?

查询数据

import psycopg

conninfo = "postgres://postgres:oeasypg@localhost:5432/oeasydb"
print(psycopg.connect(conninfo).execute("SELECT * FROM test").fetchall())
  • 运行结果

图片描述

  • 确实一句话就能查询数据库中的记录

总结

  • 这次使用了psycopg3的一句话模式
import psycopg

conninfo = "postgres://postgres:oeasypg@localhost:5432/oeasydb"
print(psycopg.connect(conninfo).execute("SELECT * FROM test").fetchall())
  • 可以快速地执行sql语句
  • psycopg推荐怎样的编程方式呢?🤔
  • 下次再说!👋