psycopg3 mit einer Datenbank im PostgreSQL-Dialekt verbinden
Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Auf dieser Seite wird erläutert, wie Sie den PostgreSQL-Treiber psycopg3 mit einer Datenbank mit PostgreSQL-Dialekt in Spanner verbinden. psycopg3 ist ein Python-Treiber für PostgreSQL.
Prüfen Sie, ob PGAdapter auf demselben Computer wie die Anwendung ausgeführt wird, die eine Verbindung über den PostgreSQL-Treiber psycopg3 herstellt.
importpsycopgwithpsycopg.connect("host=APPLICATION_HOST port=PORT dbname=DATABASE_NAME sslmode=disable")asconn:conn.autocommit=Truewithconn.cursor()ascur:cur.execute("select 'Hello world!' as hello")print("Greeting from Cloud Spanner PostgreSQL:",cur.fetchone()[0])
Ersetzen Sie Folgendes:
APPLICATION_HOST: der Hostname oder die IP-Adresse des Computers, auf dem PGAdapter ausgeführt wird. Bei einer lokalen Ausführung verwenden Sie localhost.
PORT: Die Portnummer, unter der PGAdapter ausgeführt wird. Ändern Sie dies im Verbindungsstring, wenn PGAdapter auf einem benutzerdefinierten Port ausgeführt wird. Verwenden Sie andernfalls den Standardport 5432.
Unix Domain Sockets
In diesem Abschnitt wird beschrieben, wie Sie Unix-Domain-Sockets verwenden, um eine Verbindung zu einer Datenbank mit PostgreSQL-Dialekt herzustellen. Verwenden Sie Unix-Domain-Sockets, um die Latenz so gering wie möglich zu halten.
Wenn Sie Unix-Domain-Sockets verwenden möchten, muss PGAdapter auf demselben Host wie die Clientanwendung ausgeführt werden.
Prüfen Sie, ob der PostgreSQL-JDBC-Treiber geladen ist.
importpsycopgwithpsycopg.connect("host=/tmpport=PORTdbname=DATABASE_NAME") as conn:conn.autocommit=Truewithconn.cursor()ascur:cur.execute("select 'Hello world!' as hello")print("Greetings from Cloud Spanner PostgreSQL:",cur.fetchone()[0])
Ersetzen Sie Folgendes:
/tmp: Das Standardverzeichnis für Domain-Sockets für PGAdapter. Dies kann mit dem -dir-Befehlszeilenargument geändert werden.
PORT: Die Portnummer, unter der PGAdapter ausgeführt wird. Ändern Sie dies im Verbindungsstring, wenn PGAdapter auf einem benutzerdefinierten Port ausgeführt wird. Verwenden Sie andernfalls den Standardport 5432.
Weitere Informationen zu den Verbindungsoptionen für den PostgreSQL-Treiber „psycopg3“ finden Sie im GitHub-Repository für PGAdapter unter psycopg3 Connection Options.
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Schwer verständlich","hardToUnderstand","thumb-down"],["Informationen oder Beispielcode falsch","incorrectInformationOrSampleCode","thumb-down"],["Benötigte Informationen/Beispiele nicht gefunden","missingTheInformationSamplesINeed","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["Zuletzt aktualisiert: 2025-08-17 (UTC)."],[],[],null,["# Connect psycopg3 to a PostgreSQL-dialect database\n\nThis page explains how to connect the [PostgreSQL psycopg3 driver](https://www.psycopg.org/psycopg3/) to\na PostgreSQL-dialect database in Spanner. `psycopg3` is a Python\ndriver for PostgreSQL.\n\n1. Verify that PGAdapter is running on the same machine as the\n application that is connecting using the PostgreSQL psycopg3 driver.\n\n export GOOGLE_APPLICATION_CREDENTIALS=/\u003cvar translate=\"no\"\u003e\u003cspan class=\"devsite-syntax-n\"\u003eCREDENTIALS_FILE_PATH\u003c/span\u003e\u003c/var\u003e/credentials.json\n docker pull gcr.io/cloud-spanner-pg-adapter/pgadapter\n docker run \\\n -d -p 5432:5432 \\\n -v ${GOOGLE_APPLICATION_CREDENTIALS}:${GOOGLE_APPLICATION_CREDENTIALS}:ro \\\n -e GOOGLE_APPLICATION_CREDENTIALS \\\n gcr.io/cloud-spanner-pg-adapter/pgadapter \\\n -p \u003cvar translate=\"no\"\u003e\u003cspan class=\"devsite-syntax-n\"\u003ePROJECT_NAME\u003c/span\u003e\u003c/var\u003e -i \u003cvar translate=\"no\"\u003e\u003cspan class=\"devsite-syntax-n\"\u003eINSTANCE_NAME\u003c/span\u003e\u003c/var\u003e \\\n -x\n\n For more information, see [Start PGAdapter](/spanner/docs/pgadapter-start).\n2. Connect to PGAdapter using TCP.\n\n import psycopg\n\n with psycopg.connect(\"host=\u003cvar translate=\"no\"\u003eAPPLICATION_HOST\u003c/var\u003e port=\u003cvar translate=\"no\"\u003ePORT\u003c/var\u003e dbname=\u003cvar translate=\"no\"\u003eDATABASE_NAME\u003c/var\u003e sslmode=disable\") as conn:\n conn.autocommit = True\n with conn.cursor() as cur:\n cur.execute(\"select 'Hello world!' as hello\")\n print(\"Greeting from Cloud Spanner PostgreSQL:\", cur.fetchone()[0])\n\n Replace the following:\n - \u003cvar translate=\"no\"\u003eAPPLICATION_HOST\u003c/var\u003e: the hostname or IP address of the machine where PGAdapter is running. If running locally, use `localhost`.\n - \u003cvar translate=\"no\"\u003ePORT\u003c/var\u003e: the port number where PGAdapter is running. Change this in the connection string if PGAdapter is running on a custom port. Otherwise, use the default port, `5432`.\n\n### Unix domain sockets\n\nThis section explains how to use Unix domain sockets to connect to a\nPostgreSQL-dialect database. Use Unix domain sockets for the lowest possible latency.\n\nTo use Unix domain sockets, PGAdapter must be running on the\nsame host as the client application.\n\nVerify the PostgreSQL JDBC driver is loaded. \n\n import psycopg\n\n with psycopg.connect(\"host=\u003cvar translate=\"no\"\u003e/tmp\u003c/var\u003e\n port=\u003cvar translate=\"no\"\u003e\u003cspan class=\"devsite-syntax-n\"\u003ePORT\u003c/span\u003e\u003c/var\u003e\n dbname=\u003cvar translate=\"no\"\u003e\u003cspan class=\"devsite-syntax-n\"\u003eDATABASE_NAME\u003c/span\u003e\u003c/var\u003e\") as conn:\n conn.autocommit = True\n with conn.cursor() as cur:\n cur.execute(\"select 'Hello world!' as hello\")\n print(\"Greetings from Cloud Spanner PostgreSQL:\", cur.fetchone()[0])\n\nReplace the following:\n\n- \u003cvar translate=\"no\"\u003e/tmp\u003c/var\u003e: the default domain socket directory for PGAdapter. This can be changed using the `-dir` command-line argument.\n- \u003cvar translate=\"no\"\u003ePORT\u003c/var\u003e: the port number where PGAdapter is running. Change this in the connection string if PGAdapter is running on a custom port. Otherwise, use the default port, `5432`.\n\nWhat's next\n-----------\n\n- Learn more about [PGAdapter](/spanner/docs/pgadapter).\n- For more information about PostgreSQL psycopg3 driver connection options, see [psycopg3 Connection\n Options](https://github.com/GoogleCloudPlatform/pgadapter/blob/-/docs/psycopg3.md) in the PGAdapter GitHub repository."]]