PostgreSQL,Python接口psycopg

前端之家收集整理的这篇文章主要介绍了PostgreSQL,Python接口psycopg前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

psycopg介绍:

Psycopg is a Postgresql adapter for the Python programming language. It is a wrapper for the libpq,the official Postgresql client library.

在Postgresql官方文档里的目录结构里

IV. Client Interfaces
31. libpq - C Library
32. Large Objects
33. ECPG - Embedded sql in C
34. The Information Schema

可以看到
libpq是Postgresql的C语言接口。而,psycopg是libpq的一个封装

Python访问Postgresql数据库需要用psycopg模块

关于psycopg的读法
网上有这种读法:
“psycho-pee-gee”

这里有一个介绍Python和Postgresql编程的youtube视频,里面psycopg也是这样读的

Real Time Web Apps with (just) Python and Postgres

原文链接:https://www.f2er.com/postgresql/194315.html

猜你在找的Postgre SQL相关文章