Pytania oznaczone «psycopg2»

Psycopg to adapter PostgreSQL dla języka programowania Python. Implementuje PEP 249 z wieloma rozszerzeniami.

768
Nie znaleziono pliku wykonywalnego pg_config

Mam problem z instalacją psycopg2. Podczas próby pip install psycopg2: pojawia się następujący błąd : Error: pg_config executable not found. Please add the directory containing pg_config to the PATH or specify the full executable path with the option: python setup.py build_ext --pg-config...

81
Instrukcja Python / psycopg2 WHERE IN

Jaka jest właściwa metoda, aby lista (countryList) była dostępna za pośrednictwem% sw instrukcji SQL? # using psycopg2 countryList=['UK','France'] sql='SELECT * from countries WHERE country IN (%s)' data=[countryList] cur.execute(sql,data) Jak to jest teraz, wyświetla błąd po próbie...