Python Language
PostgreSQL
Sök…
Komma igång
PostgreSQL är en aktivt utvecklad och mogen databas med öppen källkod. Med psycopg2
modulen kan vi utföra frågor i databasen.
Installation med pip
pip install psycopg2
Grundläggande användning
Låt oss anta att vi har en tabell my_table
i databasen my_database
definierad enligt följande.
id | förnamn | efternamn |
---|---|---|
1 | John | Hind |
Vi kan använda psycopg2
modulen för att köra frågor i databasen på följande sätt.
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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow