Als «psycopg2» getaggte Fragen

Psycopg ist ein PostgreSQL-Adapter für die Programmiersprache Python. Es implementiert PEP 249 mit vielen Erweiterungen.

769
Die ausführbare Datei pg_config wurde nicht gefunden

Ich habe Probleme bei der Installation von psycopg2. Ich erhalte die folgende Fehlermeldung, wenn ich es versuche pip install psycopg2: 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...

80
Python / psycopg2 WHERE IN-Anweisung

Was ist die richtige Methode, um die Liste (countryList) über% s in der SQL-Anweisung verfügbar zu machen? # using psycopg2 countryList=['UK','France'] sql='SELECT * from countries WHERE country IN (%s)' data=[countryList] cur.execute(sql,data) So wie es jetzt ist, tritt ein Fehler auf, nachdem...