Skip to content

Latest commit

 

History

History
136 lines (88 loc) · 2.77 KB

489-802590-建立连接_连接字符串_conninfo_用户名密码主机端口数据库名.sy.md

File metadata and controls

136 lines (88 loc) · 2.77 KB
show version enable_checker
step
1.0
true

psycopg3

回忆

  • 上次安装了
    • postgres数据库
    • psycopg3 适配器

图片描述

  • psycopg3
    • 如何适配 postgres 呢?

直接psql连接

  • 我们先看看 客户端psql 是如何连接数据库的

图片描述

  • 构造连接字符串

字符串

psql -d oeasydb -h localhost -p 5432 -U postgres -W 
  • 密码不对
    • 需要去pg里面改密码

图片描述

修改密码

  • 先进入pg
ALTER USER 
    postgres 
WITH PASSWORD 
    'oeasypg'
;
  • 修改完成

图片描述

尝试登陆

  • 修改postgres密码后
    • 退出pg
    • 再尝试登录
psql -d oeasydb -h localhost -p 5432 -U postgres -W 
  • 输入刚才修改的密码oeasypg
    • 注意输入密码时
      • 终端不显示任何字符

图片描述

  • 确实可以连接到指定库oeasydb
  • 尝试用psycopg3

查看文档

图片描述

  • 有关于connect函数的说明

connect

图片描述

  • conninfo很重要

conninfo

图片描述

  • 尝试做一个

照猫画虎

  • 具体代码 包括
    • 用户名
    • 密码
    • 主机地址
    • 端口号
    • 数据库名
import psycopg
conninfo = "postgres://postgres:oeasypg@localhost:5432/oeasydb"
with psycopg.connect(conninfo) as conn:
    print("connect!")
  • 点击右上角复制按钮后
  • 键入 vi c.py
  • 依次按下 "*p 三个按键

图片描述

  • 运行结果

图片描述

  • 可以连到库里面
    • 直接查询吗?

总结

  • 这次研究了psycopg这个包
    • pg最流行的python适配器
    • 有了他就可以用python对数据库读写!

图片描述

  • 具体怎么读写呢?🤔
  • 下次再说!👋