Help Center/
GaussDB/
Developer Guide(Centralized_2.x)/
Application Development Guide/
Psycopg-based Development/
Example: Common Operations
Updated on 2023-10-23 GMT+08:00
Example: Common Operations
import psycopg2 # Create a connection object. conn=psycopg2.connect(database="postgres",user="user",password="password",host="localhost",port=port) cur=conn.cursor() # Create a pointer object. # Create a connection object (using SSL). conn = psycopg2.connect(dbname="postgres", user="user", password="password", host="localhost", port=port, sslmode="verify-ca", sslcert="client.crt",sslkey="client.key",sslrootcert="cacert.pem") Note: If sslcert, sslkey, and sslrootcert are not set, the following files in the .postgresql directory of the current user are used by default: client.crt, client.key, and root.crt. # Create a table. cur.execute("CREATE TABLE student(id integer,name varchar,sex varchar);") # Insert data. cur.execute("INSERT INTO student(id,name,sex) VALUES(%s,%s,%s)",(1,'Aspirin','M')) cur.execute("INSERT INTO student(id,name,sex) VALUES(%s,%s,%s)",(2,'Taxol','F')) cur.execute("INSERT INTO student(id,name,sex) VALUES(%s,%s,%s)",(3,'Dixheral','M')) # Obtain the result. cur.execute('SELECT * FROM student') results=cur.fetchall() print (results) # Close the connection. conn.commit() cur.close() conn.close() Common connection modes of psycopg2 1. conn = psycopg2.connect(dbname="postgres", user="user", password="password", host="localhost", port=port) 2. conn = psycopg2.connect("dbname=postgres user=user password=password host=localhost port=port") 3. Using logs import logging import psycopg2 from psycopg2.extras import LoggingConnection logging.basicConfig(level=logging.DEBUG) # Log level logger = logging.getLogger(__name__) db_settings = { "user": "user", "password": "password", "host": "localhost", "database": "postgres", "port": port } conn = psycopg2.connect(connection_factory=LoggingConnection, **db_settings) conn.initialize(logger)
Parent topic: Psycopg-based Development
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
The system is busy. Please try again later.
For any further questions, feel free to contact us through the chatbot.
Chatbot