Ricerca…


Iniziare

PostgreSQL è un database open source attivamente sviluppato e maturo. Usando il modulo psycopg2 , possiamo eseguire query sul database.

Installazione usando pip

pip install psycopg2

Utilizzo di base

Supponiamo di avere una tabella my_table nel database my_database definita come segue.

id nome di battesimo cognome
1 John daino

Possiamo usare il modulo psycopg2 per eseguire query sul database nel modo seguente.

import psycopg2

# Establish a connection to the existing database 'my_database' using
# the user 'my_user' with password 'my_password'
con = psycopg2.connect("host=localhost dbname=my_database user=my_user password=my_password")

# Create a cursor
cur = con.cursor()

# Insert a record into 'my_table'
cur.execute("INSERT INTO my_table(id, first_name, last_name) VALUES (2, 'Jane', 'Doe');")

# Commit the current transaction
con.commit()

# Retrieve all records from 'my_table'
cur.execute("SELECT * FROM my_table;")
results = cur.fetchall()

# Close the database connection
con.close()

# Print the results
print(results)

# OUTPUT: [(1, 'John', 'Doe'), (2, 'Jane', 'Doe')]


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow