Python Language
PostgreSQL
サーチ…
入門
PostgreSQLは積極的に開発され成熟したオープンソースデータベースです。 psycopg2
モジュールを使用して、データベースに対してクエリを実行することができます。
pipを使ったインストール
pip install psycopg2
基本的な使用法
次のように定義されたデータベースmy_database
テーブルmy_table
があると仮定します。
id | ファーストネーム | 苗字 |
---|---|---|
1 | ジョン | Doe |
psycopg2
モジュールを使用して、以下の方法でデータベース上でクエリを実行することができます。
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
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow