PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Comment utiliser LoggingConnection de Psycopg2 ?

Ressemble à la définition de la connection_factory=LoggingConnection fonctionne

import logging
import psycopg2
from psycopg2.extras import LoggingConnection

logging.basicConfig(level=logging.DEBUG)
logger = logging.getLogger(__name__)

db_settings = {
    "user": "abcd",
    "password": "efgh",
    "host": "postgres.db",
    "database": "dev",
}

conn = psycopg2.connect(connection_factory=LoggingConnection, **db_settings)
conn.initialize(logger)

cur = conn.cursor()
cur.execute("SELECT * FROM table LIMIT 5")