すべてのソフトウェアアプリケーションはデータと相互作用します 、最も一般的にはデータベース管理システム(DBMS)を介して。一部のプログラミング言語には、DBMSとの対話に使用できるモジュールが付属していますが、その他のプログラミング言語では、サードパーティのパッケージを使用する必要があります。このチュートリアルでは、さまざまなPythonSQLライブラリについて説明します。 あなたが使用できること。 SQLite、MySQL、およびPostgreSQLデータベースと対話するための簡単なアプリケーションを開発します。
このチュートリアルでは、次の方法を学習します。
- 接続 PythonSQLライブラリを使用してさまざまなデータベース管理システムに
- 対話 SQLite、MySQL、およびPostgreSQLデータベースを使用
- 実行 Pythonアプリケーションを使用した一般的なデータベースクエリ
- 開発 Pythonスクリプトを使用したさまざまなデータベースにわたるアプリケーション
このチュートリアルを最大限に活用するには、基本的なPython、SQL、およびデータベース管理システムの操作に関する知識が必要です。また、Pythonでパッケージをダウンロードしてインポートし、ローカルまたはリモートでさまざまなデータベースサーバーをインストールして実行する方法を知っている必要があります。
データベーススキーマを理解する
このチュートリアルでは、ソーシャルメディアアプリケーション用の非常に小さなデータベースを開発します。データベースは4つのテーブルで構成されます:
ユーザー
投稿
コメント
いいね
データベーススキーマの概要を以下に示します。
両方のユーザー
およびposts
1人のユーザーが多くの投稿を高く評価できるため、1対多の関係になります。同様に、1人のユーザーが多くのコメントを投稿でき、1つの投稿に複数のコメントを含めることもできます。したがって、両方のユーザー
およびposts
また、コメント
と1対多の関係があります テーブル。これはlikes
にも当てはまります テーブルなので、両方のユーザー
およびposts
likes
と1対多の関係になります テーブル。
PythonSQLライブラリを使用したデータベースへの接続
Python SQLライブラリを介してデータベースを操作する前に、接続する必要があります。 そのデータベースに。このセクションでは、Pythonアプリケーション内からSQLite、MySQL、およびPostgreSQLデータベースに接続する方法を説明します。
注: MySQLおよびPostgreSQLデータベースセクションのスクリプトを実行する前に、MySQLおよびPostgreSQLサーバーが稼働している必要があります。 MySQLサーバーを起動する方法の簡単な紹介については、Djangoプロジェクトの起動のMySQLセクションを確認してください。 PostgreSQLでデータベースを作成する方法については、「PythonによるSQLインジェクション攻撃の防止」の「データベースの設定」セクションを参照してください。
3つの異なるPythonファイルを作成することをお勧めします。これにより、3つのデータベースごとに1つずつ作成されます。対応するファイルで各データベースのスクリプトを実行します。
SQLite
SQLite 外部のPythonSQLモジュールをインストールする必要がないため、Pythonアプリケーションに接続するのにおそらく最も簡単なデータベースです。デフォルトでは、Pythonインストールには sqlite3
という名前のPythonSQLライブラリが含まれています SQLiteデータベースとのやり取りに使用できます。
さらに、SQLiteデータベースはサーバーレス および自己完結型 、データをファイルに読み書きするため。つまり、MySQLやPostgreSQLとは異なり、データベース操作を実行するためにSQLiteサーバーをインストールして実行する必要さえありません。
sqlite3
の使用方法は次のとおりです PythonでSQLiteデータベースに接続するには:
1import sqlite3
2from sqlite3 import Error
3
4def create_connection(path):
5 connection = None
6 try:
7 connection = sqlite3.connect(path)
8 print("Connection to SQLite DB successful")
9 except Error as e:
10 print(f"The error '{e}' occurred")
11
12 return connection
このコードの仕組みは次のとおりです。
- 1行目と2行目
sqlite3
をインポートします およびモジュールのError
クラス。 - 4行目 関数
.create_connection()
を定義します SQLiteデータベースへのパスを受け入れます。 - 7行目
.connect()
を使用しますsqlite3
から モジュールであり、SQLiteデータベースパスをパラメータとして受け取ります。指定された場所にデータベースが存在する場合、データベースへの接続が確立されます。それ以外の場合は、指定された場所に新しいデータベースが作成され、接続が確立されます。 - 8行目 成功したデータベース接続のステータスを出力します。
- 9行目
.connect()
の場合にスローされる可能性のある例外をキャッチします 接続の確立に失敗します。 - 10行目 コンソールにエラーメッセージを表示します。
sqlite3.connect(path)
connection
を返します オブジェクト。これは、 create_connection()
によって返されます。 。この接続
オブジェクトを使用して、SQLiteデータベースでクエリを実行できます。次のスクリプトは、SQLiteデータベースへの接続を作成します。
connection = create_connection("E:\\sm_app.sqlite")
上記のスクリプトを実行すると、データベースファイル sm_app.sqlite
が表示されます。 ルートディレクトリに作成されます。設定に合わせて場所を変更できることに注意してください。
MySQL
SQLiteとは異なり、MySQLデータベースへの接続に使用できるデフォルトのPythonSQLモジュールはありません。代わりに、PythonSQLドライバーをインストールする必要があります Pythonアプリケーション内からMySQLデータベースと対話するためのMySQLの場合。そのようなドライバーの1つは、 mysql-connector-python
です。 。このPythonSQLモジュールはpip
でダウンロードできます :
$ pip install mysql-connector-python
MySQLはサーバーベースであることに注意してください データベース管理システム。 1つのMySQLサーバーに複数のデータベースを含めることができます。接続の作成がデータベースの作成と同等であるSQLiteとは異なり、MySQLデータベースにはデータベース作成の2段階のプロセスがあります。
- 接続する MySQLサーバーに。
- 別のクエリを実行する データベースを作成します。
MySQLデータベースサーバーに接続し、接続オブジェクトを返す関数を定義します。
1import mysql.connector
2from mysql.connector import Error
3
4def create_connection(host_name, user_name, user_password):
5 connection = None
6 try:
7 connection = mysql.connector.connect(
8 host=host_name,
9 user=user_name,
10 passwd=user_password
11 )
12 print("Connection to MySQL DB successful")
13 except Error as e:
14 print(f"The error '{e}' occurred")
15
16 return connection
17
18connection = create_connection("localhost", "root", "")
上記のスクリプトでは、関数 create_connection()
を定義します。 これは3つのパラメータを受け入れます:
- host_name
- user_name
- user_password
mysql.connector
Python SQLモジュールには、メソッド .connect()
が含まれています 7行目でMySQLデータベースサーバーに接続するために使用します。接続が確立されると、 connection
オブジェクトは呼び出し元の関数に返されます。最後に、18行目で create_connection()
を呼び出します。 ホスト名、ユーザー名、およびパスワードを使用します。
これまでのところ、接続を確立しただけです。データベースはまだ作成されていません。これを行うには、別の関数 create_database()
を定義します 2つのパラメータを受け入れる:
接続
connection
です 対話するデータベースサーバーへのオブジェクト。クエリ
データベースを作成するクエリです。
この関数は次のようになります。
def create_database(connection, query):
cursor = connection.cursor()
try:
cursor.execute(query)
print("Database created successfully")
except Error as e:
print(f"The error '{e}' occurred")
クエリを実行するには、 cursor
を使用します 物体。 query
実行されるものはcursor.execute()
に渡されます 文字列形式。
sm_app
という名前のデータベースを作成します MySQLデータベースサーバーのソーシャルメディアアプリの場合:
create_database_query = "CREATE DATABASE sm_app"
create_database(connection, create_database_query)
これで、データベース sm_app
が作成されました。 データベースサーバー上。ただし、 connection
create_connection()
によって返されるオブジェクト MySQLデータベースサーバーに接続されています。 sm_app
に接続する必要があります データベース。これを行うには、 create_connection()
を変更します 次のように:
1def create_connection(host_name, user_name, user_password, db_name):
2 connection = None
3 try:
4 connection = mysql.connector.connect(
5 host=host_name,
6 user=user_name,
7 passwd=user_password,
8 database=db_name
9 )
10 print("Connection to MySQL DB successful")
11 except Error as e:
12 print(f"The error '{e}' occurred")
13
14 return connection
8行目で、 create_connection()
であることがわかります。 db_name
という追加のパラメータを受け入れるようになりました 。このパラメーターは、接続するデータベースの名前を指定します。この関数を呼び出すときに、接続するデータベースの名前を渡すことができます:
connection = create_connection("localhost", "root", "", "sm_app")
上記のスクリプトは、 create_connection()
を正常に呼び出します sm_app
に接続します データベース。
PostgreSQL
MySQLと同様に、PostgreSQLデータベースとのやり取りに使用できるデフォルトのPythonSQLライブラリはありません。代わりに、サードパーティのPythonSQLドライバーをインストールする必要があります PostgreSQLと対話します。 PostgreSQL用のそのようなPythonSQLドライバーの1つは、 psycopg2
です。 。端末で次のコマンドを実行して、 psycopg2
をインストールします Python SQLモジュール:
$ pip install psycopg2
SQLiteおよびMySQLデータベースと同様に、 create_connection()
を定義します PostgreSQLデータベースと接続するには:
import psycopg2
from psycopg2 import OperationalError
def create_connection(db_name, db_user, db_password, db_host, db_port):
connection = None
try:
connection = psycopg2.connect(
database=db_name,
user=db_user,
password=db_password,
host=db_host,
port=db_port,
)
print("Connection to PostgreSQL DB successful")
except OperationalError as e:
print(f"The error '{e}' occurred")
return connection
psycopg2.connect()
を使用します Pythonアプリケーション内からPostgreSQLサーバーに接続します。
その後、 create_connection()
を使用できます PostgreSQLデータベースへの接続を作成します。まず、デフォルトのデータベース postgres
と接続します 次の文字列を使用して:
connection = create_connection(
"postgres", "postgres", "abc123", "127.0.0.1", "5432"
)
次に、データベース sm_app
を作成する必要があります デフォルトのpostgres
内 データベース。 PostgreSQLで任意のSQLクエリを実行する関数を定義できます。以下では、 create_database()
を定義します PostgreSQLデータベースサーバーに新しいデータベースを作成するには:
def create_database(connection, query):
connection.autocommit = True
cursor = connection.cursor()
try:
cursor.execute(query)
print("Query executed successfully")
except OperationalError as e:
print(f"The error '{e}' occurred")
create_database_query = "CREATE DATABASE sm_app"
create_database(connection, create_database_query)
上記のスクリプトを実行すると、 sm_app
が表示されます。 PostgreSQLデータベースサーバーのデータベース。
sm_app
でクエリを実行する前に データベースに接続する必要があります:
connection = create_connection(
"sm_app", "postgres", "abc123", "127.0.0.1", "5432"
)
上記のスクリプトを実行すると、 sm_app
との接続が確立されます postgres
にあるデータベース データベースサーバー。ここでは、 127.0.0.1
データベースサーバーのホストIPアドレス、および 5432
を指します データベースサーバーのポート番号を指します。
テーブルの作成
前のセクションでは、さまざまなPython SQLライブラリを使用してSQLite、MySQL、およびPostgreSQLデータベースサーバーに接続する方法を説明しました。 sm_app
を作成しました 3つのデータベースサーバーすべてのデータベース。このセクションでは、テーブルを作成する方法を説明します これら3つのデータベース内。
前に説明したように、4つのテーブルを作成します。
ユーザー
投稿
コメント
いいね
SQLiteから始めます。
SQLite
SQLiteでクエリを実行するには、 cursor.execute()
を使用します 。このセクションでは、関数 execute_query()
を定義します この方法を使用します。関数はconnection
を受け入れます cursor.execute()
に渡すオブジェクトとクエリ文字列 。
.execute()
文字列の形式で渡されたクエリを実行できます。このセクションでは、このメソッドを使用してテーブルを作成します。次のセクションでは、これと同じ方法を使用して、更新クエリと削除クエリも実行します。
注: このスクリプトは、SQLiteデータベースの接続を作成したのと同じファイルで実行する必要があります。
関数の定義は次のとおりです:
def execute_query(connection, query):
cursor = connection.cursor()
try:
cursor.execute(query)
connection.commit()
print("Query executed successfully")
except Error as e:
print(f"The error '{e}' occurred")
このコードは、指定された query
を実行しようとします 必要に応じてエラーメッセージを出力します。
次に、クエリを記述します :
create_users_table = """
CREATE TABLE IF NOT EXISTS users (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
age INTEGER,
gender TEXT,
nationality TEXT
);
"""
これは、テーブル users
を作成することを意味します 次の5つの列があります:
-
id
名前コード>
年齢コード>
性別
国籍
最後に、 execute_query()
を呼び出します テーブルを作成します。 connection
を渡します 前のセクションで作成したオブジェクトとcreate_users_table
テーブル作成クエリを含む文字列:
execute_query(connection, create_users_table)
次のクエリは、投稿
を作成するために使用されます テーブル:
create_posts_table = """
CREATE TABLE IF NOT EXISTS posts(
id INTEGER PRIMARY KEY AUTOINCREMENT,
title TEXT NOT NULL,
description TEXT NOT NULL,
user_id INTEGER NOT NULL,
FOREIGN KEY (user_id) REFERENCES users (id)
);
"""
ユーザー
の間には1対多の関係があるため およびposts
、外部キー user_id
が表示されます 投稿
で id
を参照するテーブル users
の列 テーブル。次のスクリプトを実行して、 posts
を作成します テーブル:
execute_query(connection, create_posts_table)
最後に、コメント
を作成できます およびlikes
次のスクリプトを使用したテーブル:
create_comments_table = """
CREATE TABLE IF NOT EXISTS comments (
id INTEGER PRIMARY KEY AUTOINCREMENT,
text TEXT NOT NULL,
user_id INTEGER NOT NULL,
post_id INTEGER NOT NULL,
FOREIGN KEY (user_id) REFERENCES users (id) FOREIGN KEY (post_id) REFERENCES posts (id)
);
"""
create_likes_table = """
CREATE TABLE IF NOT EXISTS likes (
id INTEGER PRIMARY KEY AUTOINCREMENT,
user_id INTEGER NOT NULL,
post_id integer NOT NULL,
FOREIGN KEY (user_id) REFERENCES users (id) FOREIGN KEY (post_id) REFERENCES posts (id)
);
"""
execute_query(connection, create_comments_table)
execute_query(connection, create_likes_table)
テーブルの作成がわかります SQLiteでの使用は、生のSQLの使用と非常によく似ています。クエリを文字列変数に格納し、その変数を cursor.execute()
に渡すだけです。 。
MySQL
mysql-connector-python
を使用します MySQLでテーブルを作成するPythonSQLモジュール。 SQLiteの場合と同様に、クエリを cursor.execute()
に渡す必要があります。 、 .cursor()
を呼び出すことで返されます connection
で 物体。別の関数execute_query()
を作成できます connection
を受け入れる およびquery
文字列:
1def execute_query(connection, query):
2 cursor = connection.cursor()
3 try:
4 cursor.execute(query)
5 connection.commit()
6 print("Query executed successfully")
7 except Error as e:
8 print(f"The error '{e}' occurred")
4行目で、 query
を渡します cursor.execute()
へ 。
これで、ユーザー
を作成できます この関数を使用するテーブル:
create_users_table = """
CREATE TABLE IF NOT EXISTS users (
id INT AUTO_INCREMENT,
name TEXT NOT NULL,
age INT,
gender TEXT,
nationality TEXT,
PRIMARY KEY (id)
) ENGINE = InnoDB
"""
execute_query(connection, create_users_table)
外部キー関係を実装するためのクエリは、SQLiteと比較してMySQLではわずかに異なります。さらに、MySQLは AUTO_INCREMENT
を使用します キーワード(SQLite AUTOINCREMENT
と比較して キーワード)値が自動的にインクリメントされる列を作成します 新しいレコードが挿入されたとき。
次のスクリプトはposts
を作成します 外部キーuser_id
を含むテーブル id
を参照します users
の列 テーブル:
create_posts_table = """
CREATE TABLE IF NOT EXISTS posts (
id INT AUTO_INCREMENT,
title TEXT NOT NULL,
description TEXT NOT NULL,
user_id INTEGER NOT NULL,
FOREIGN KEY fk_user_id (user_id) REFERENCES users(id),
PRIMARY KEY (id)
) ENGINE = InnoDB
"""
execute_query(connection, create_posts_table)
同様に、コメント
を作成するには およびlikes
テーブルでは、対応する CREATE
を渡すことができます execute_query()
へのクエリ 。
PostgreSQL
SQLiteおよびMySQLデータベースと同様に、 connection
psycopg2.connect()
によって返されるオブジェクト カーソル
が含まれています 物体。 cursor.execute()
を使用できます PostgreSQLデータベースでPythonSQLクエリを実行します。
関数execute_query()
を定義します :
def execute_query(connection, query):
connection.autocommit = True
cursor = connection.cursor()
try:
cursor.execute(query)
print("Query executed successfully")
except OperationalError as e:
print(f"The error '{e}' occurred")
この関数を使用して、PostgreSQLデータベース内のテーブルの作成、レコードの挿入、レコードの変更、およびレコードの削除を行うことができます。
次に、 users
を作成します sm_app
内のテーブル データベース:
create_users_table = """
CREATE TABLE IF NOT EXISTS users (
id SERIAL PRIMARY KEY,
name TEXT NOT NULL,
age INTEGER,
gender TEXT,
nationality TEXT
)
"""
execute_query(connection, create_users_table)
users
を作成するためのクエリが表示されます PostgreSQLのテーブルはSQLiteやMySQLとは少し異なります。ここで、キーワード SERIAL
自動的にインクリメントする列を作成するために使用されます。 MySQLがキーワードAUTO_INCREMENT
を使用していることを思い出してください 。
さらに、 post
を作成する次のスクリプトに示すように、外部キー参照も異なる方法で指定されます。 テーブル:
create_posts_table = """
CREATE TABLE IF NOT EXISTS posts (
id SERIAL PRIMARY KEY,
title TEXT NOT NULL,
description TEXT NOT NULL,
user_id INTEGER REFERENCES users(id)
)
"""
execute_query(connection, create_posts_table)
コメント
を作成するには テーブルには、 CREATE
を作成する必要があります コメント
のクエリ テーブルを作成し、 execute_query()
に渡します。 。 likes
を作成するプロセス テーブルは同じです。 CREATE
を変更するだけです likes
を作成するためのクエリ コメント
の代わりにテーブル テーブル。
レコードの挿入
前のセクションでは、さまざまなPython SQLモジュールを使用して、SQLite、MySQL、およびPostgreSQLデータベースにテーブルを作成する方法を説明しました。このセクションでは、レコードを挿入する方法を説明します あなたのテーブルに。
SQLite
SQLiteデータベースにレコードを挿入するには、同じ execute_query()
を使用できます。 テーブルの作成に使用した関数。まず、 INSERT INTO
を保存する必要があります 文字列でクエリします。次に、 connection
を渡すことができます オブジェクトとquery
execute_query()
への文字列 。 users
に5つのレコードを挿入しましょう テーブル:
create_users = """
INSERT INTO
users (name, age, gender, nationality)
VALUES
('James', 25, 'male', 'USA'),
('Leila', 32, 'female', 'France'),
('Brigitte', 35, 'female', 'England'),
('Mike', 40, 'male', 'Denmark'),
('Elizabeth', 21, 'female', 'Canada');
"""
execute_query(connection, create_users)
id
を設定したので 列を自動インクリメントするには、 id
の値を指定する必要はありません これらのユーザー
の列 。 ユーザー
tableは、これら5つのレコードに id
を自動入力します 1
の値 5
へ 。
次に、6つのレコードを post
に挿入します テーブル:
create_posts = """
INSERT INTO
posts (title, description, user_id)
VALUES
("Happy", "I am feeling very happy today", 1),
("Hot Weather", "The weather is very hot today", 2),
("Help", "I need some help with my work", 2),
("Great News", "I am getting married", 1),
("Interesting Game", "It was a fantastic game of tennis", 5),
("Party", "Anyone up for a late-night party today?", 3);
"""
execute_query(connection, create_posts)
user_id
投稿
の列 テーブルは外部キーです id
を参照します users
の列 テーブル。これは、 user_id
が 列には、すでに存在する値が含まれている必要があります id
内 users
の列 テーブル。存在しない場合は、エラーが表示されます。
同様に、次のスクリプトはレコードをコメント
に挿入します およびlikes
テーブル:
create_comments = """
INSERT INTO
comments (text, user_id, post_id)
VALUES
('Count me in', 1, 6),
('What sort of help?', 5, 3),
('Congrats buddy', 2, 4),
('I was rooting for Nadal though', 4, 5),
('Help with your thesis?', 2, 3),
('Many congratulations', 5, 4);
"""
create_likes = """
INSERT INTO
likes (user_id, post_id)
VALUES
(1, 6),
(2, 3),
(1, 5),
(5, 4),
(2, 4),
(4, 2),
(3, 6);
"""
execute_query(connection, create_comments)
execute_query(connection, create_likes)
どちらの場合も、 INSERT INTO
を保存します 文字列としてクエリを実行し、 execute_query()
で実行します 。
MySQL
PythonアプリケーションからMySQLデータベースにレコードを挿入する方法は2つあります。最初のアプローチはSQLiteに似ています。 INSERT INTO
を保存できます 文字列でクエリを実行してから、 cursor.execute()
を使用します レコードを挿入します。
以前、ラッパー関数 execute_query()
を定義しました レコードを挿入するために使用したもの。これと同じ関数を使用して、MySQLテーブルにレコードを挿入できます。次のスクリプトは、レコードを users
に挿入します execute_query()
を使用したテーブル :
create_users = """
INSERT INTO
`users` (`name`, `age`, `gender`, `nationality`)
VALUES
('James', 25, 'male', 'USA'),
('Leila', 32, 'female', 'France'),
('Brigitte', 35, 'female', 'England'),
('Mike', 40, 'male', 'Denmark'),
('Elizabeth', 21, 'female', 'Canada');
"""
execute_query(connection, create_users)
2番目のアプローチでは、 cursor.executemany()
を使用します 、2つのパラメータを受け入れます:
- クエリ 挿入するレコードのプレースホルダーを含む文字列
- リスト 挿入するレコードの数
次の例を見てください。この例では、2つのレコードが likes
に挿入されています。 テーブル:
sql = "INSERT INTO likes ( user_id, post_id ) VALUES ( %s, %s )"
val = [(4, 5), (3, 4)]
cursor = connection.cursor()
cursor.executemany(sql, val)
connection.commit()
MySQLテーブルにレコードを挿入するためにどのアプローチを選択するかはあなた次第です。 SQLの専門家であれば、 .execute()
を使用できます。 。 SQLにあまり詳しくない場合は、 .executemany()
を使用する方が簡単な場合があります。 。 2つのアプローチのいずれかを使用すると、レコードを post
に正常に挿入できます。 、コメント
、および likes
テーブル。
PostgreSQL
前のセクションでは、SQLiteデータベーステーブルにレコードを挿入するための2つのアプローチを見ました。 1つ目はSQL文字列クエリを使用し、2つ目は .executemany()
を使用します 。 psycopg2
.execute()
は、この2番目のアプローチに従います。 プレースホルダーベースのクエリを実行するために使用されます。
プレースホルダーとレコードのリストを含むSQLクエリを.execute()
に渡します。 。リスト内の各レコードはタプルになります。タプル値はデータベーステーブルの列値に対応します。 users
にユーザーレコードを挿入する方法は次のとおりです PostgreSQLデータベースのテーブル:
users = [
("James", 25, "male", "USA"),
("Leila", 32, "female", "France"),
("Brigitte", 35, "female", "England"),
("Mike", 40, "male", "Denmark"),
("Elizabeth", 21, "female", "Canada"),
]
user_records = ", ".join(["%s"] * len(users))
insert_query = (
f"INSERT INTO users (name, age, gender, nationality) VALUES {user_records}"
)
connection.autocommit = True
cursor = connection.cursor()
cursor.execute(insert_query, users)
上記のスクリプトは、リスト users
を作成します タプルの形式で5つのユーザーレコードが含まれています。次に、5つのプレースホルダー要素(%s
)を含むプレースホルダー文字列を作成します )5つのユーザーレコードに対応します。プレースホルダー文字列は、レコードを users
に挿入するクエリと連結されます。 テーブル。最後に、クエリ文字列とユーザーレコードが .execute()
に渡されます 。上記のスクリプトは、5つのレコードを users
に正常に挿入します テーブル。
PostgreSQLテーブルにレコードを挿入する別の例を見てください。次のスクリプトは、レコードを post
に挿入します テーブル:
posts = [
("Happy", "I am feeling very happy today", 1),
("Hot Weather", "The weather is very hot today", 2),
("Help", "I need some help with my work", 2),
("Great News", "I am getting married", 1),
("Interesting Game", "It was a fantastic game of tennis", 5),
("Party", "Anyone up for a late-night party today?", 3),
]
post_records = ", ".join(["%s"] * len(posts))
insert_query = (
f"INSERT INTO posts (title, description, user_id) VALUES {post_records}"
)
connection.autocommit = True
cursor = connection.cursor()
cursor.execute(insert_query, posts)
コメント
にレコードを挿入できます およびlikes
同じアプローチのテーブル。
レコードの選択
このセクションでは、さまざまなPythonSQLモジュールを使用してデータベーステーブルからレコードを選択する方法を説明します。特に、 SELECT
を実行する方法がわかります SQLite、MySQL、およびPostgreSQLデータベースに対するクエリ。
SQLite
SQLiteを使用してレコードを選択するには、 cursor.execute()
を再度使用できます。 。ただし、これを行った後は、 .fetchall()
を呼び出す必要があります 。このメソッドは、各タプルが取得されたレコードの対応する行にマップされているタプルのリストを返します。
プロセスを簡素化するために、関数 execute_read_query()
を作成できます。 :
def execute_read_query(connection, query):
cursor = connection.cursor()
result = None
try:
cursor.execute(query)
result = cursor.fetchall()
return result
except Error as e:
print(f"The error '{e}' occurred")
この関数はconnection
を受け入れます オブジェクトとSELECT
クエリを実行して、選択したレコードを返します。
SELECT
次に、ユーザー
からすべてのレコードを選択しましょう テーブル:
select_users = "SELECT * from users"
users = execute_read_query(connection, select_users)
for user in users:
print(user)
上記のスクリプトでは、 SELECT
クエリは、 users
からすべてのユーザーを選択します テーブル。これはexecute_read_query()
に渡されます 、 users
からのすべてのレコードを返します テーブル。次に、レコードがトラバースされ、コンソールに出力されます。
注: SELECT *
の使用はお勧めしません 大きなテーブルでは、ネットワークトラフィックを増加させる多数のI/O操作が発生する可能性があるためです。
上記のクエリの出力は次のようになります:
(1, 'James', 25, 'male', 'USA')
(2, 'Leila', 32, 'female', 'France')
(3, 'Brigitte', 35, 'female', 'England')
(4, 'Mike', 40, 'male', 'Denmark')
(5, 'Elizabeth', 21, 'female', 'Canada')
同様に、 posts
からすべてのレコードを取得できます 以下のスクリプトを含む表:
select_posts = "SELECT * FROM posts"
posts = execute_read_query(connection, select_posts)
for post in posts:
print(post)
出力は次のようになります:
(1, 'Happy', 'I am feeling very happy today', 1)
(2, 'Hot Weather', 'The weather is very hot today', 2)
(3, 'Help', 'I need some help with my work', 2)
(4, 'Great News', 'I am getting married', 1)
(5, 'Interesting Game', 'It was a fantastic game of tennis', 5)
(6, 'Party', 'Anyone up for a late-night party today?', 3)
結果には、 posts
のすべてのレコードが表示されます テーブル。
JOIN
JOIN
を含む複雑なクエリを実行することもできます 操作 2つの関連するテーブルからデータを取得します。たとえば、次のスクリプトは、ユーザーIDと名前、およびこれらのユーザーが投稿した投稿の説明を返します。
select_users_posts = """
SELECT
users.id,
users.name,
posts.description
FROM
posts
INNER JOIN users ON users.id = posts.user_id
"""
users_posts = execute_read_query(connection, select_users_posts)
for users_post in users_posts:
print(users_post)
Here’s the output:
(1, 'James', 'I am feeling very happy today')
(2, 'Leila', 'The weather is very hot today')
(2, 'Leila', 'I need some help with my work')
(1, 'James', 'I am getting married')
(5, 'Elizabeth', 'It was a fantastic game of tennis')
(3, 'Brigitte', 'Anyone up for a late night party today?')
You can also select data from three related tables by implementing multiple JOIN
operators 。 The following script returns all posts, along with the comments on the posts and the names of the users who posted the comments:
select_posts_comments_users = """
SELECT
posts.description as post,
text as comment,
name
FROM
posts
INNER JOIN comments ON posts.id = comments.post_id
INNER JOIN users ON users.id = comments.user_id
"""
posts_comments_users = execute_read_query(
connection, select_posts_comments_users
)
for posts_comments_user in posts_comments_users:
print(posts_comments_user)
The output looks like this:
('Anyone up for a late night party today?', 'Count me in', 'James')
('I need some help with my work', 'What sort of help?', 'Elizabeth')
('I am getting married', 'Congrats buddy', 'Leila')
('It was a fantastic game of tennis', 'I was rooting for Nadal though', 'Mike')
('I need some help with my work', 'Help with your thesis?', 'Leila')
('I am getting married', 'Many congratulations', 'Elizabeth')
You can see from the output that the column names are not being returned by .fetchall()
。 To return column names, you can use the .description
attribute of the cursor
物体。 For instance, the following list returns all the column names for the above query:
cursor = connection.cursor()
cursor.execute(select_posts_comments_users)
cursor.fetchall()
column_names = [description[0] for description in cursor.description]
print(column_names)
The output looks like this:
['post', 'comment', 'name']
You can see the names of the columns for the given query.
WHERE
Now you’ll execute a SELECT
query that returns the post, along with the total number of likes that the post received:
select_post_likes = """
SELECT
description as Post,
COUNT(likes.id) as Likes
FROM
likes,
posts
WHERE
posts.id = likes.post_id
GROUP BY
likes.post_id
"""
post_likes = execute_read_query(connection, select_post_likes)
for post_like in post_likes:
print(post_like)
The output is as follows:
('The weather is very hot today', 1)
('I need some help with my work', 1)
('I am getting married', 2)
('It was a fantastic game of tennis', 1)
('Anyone up for a late night party today?', 2)
By using a WHERE
clause, you’re able to return more specific results.
MySQL
The process of selecting records in MySQL is absolutely identical to selecting records in SQLite. You can use cursor.execute()
followed by .fetchall()
。 The following script creates a wrapper function execute_read_query()
that you can use to select records:
def execute_read_query(connection, query):
cursor = connection.cursor()
result = None
try:
cursor.execute(query)
result = cursor.fetchall()
return result
except Error as e:
print(f"The error '{e}' occurred")
Now select all the records from the users
テーブル:
select_users = "SELECT * FROM users"
users = execute_read_query(connection, select_users)
for user in users:
print(user)
The output will be similar to what you saw with SQLite.
PostgreSQL
The process of selecting records from a PostgreSQL table with the psycopg2
Python SQL module is similar to what you did with SQLite and MySQL. Again, you’ll use cursor.execute()
followed by .fetchall()
to select records from your PostgreSQL table. The following script selects all the records from the users
table and prints them to the console:
def execute_read_query(connection, query):
cursor = connection.cursor()
result = None
try:
cursor.execute(query)
result = cursor.fetchall()
return result
except OperationalError as e:
print(f"The error '{e}' occurred")
select_users = "SELECT * FROM users"
users = execute_read_query(connection, select_users)
for user in users:
print(user)
Again, the output will be similar to what you’ve seen before.
Updating Table Records
In the last section, you saw how to select records from SQLite, MySQL, and PostgreSQL databases. In this section, you’ll cover the process for updating records using the Python SQL libraries for SQLite, PostgresSQL, and MySQL.
SQLite
Updating records in SQLite is pretty straightforward. You can again make use of execute_query()
。 As an example, you can update the description of the post with an id
2
の 。 First, SELECT
the description of this post:
select_post_description = "SELECT description FROM posts WHERE id = 2"
post_description = execute_read_query(connection, select_post_description)
for description in post_description:
print(description)
You should see the following output:
('The weather is very hot today',)
The following script updates the description:
update_post_description = """
UPDATE
posts
SET
description = "The weather has become pleasant now"
WHERE
id = 2
"""
execute_query(connection, update_post_description)
Now, if you execute the SELECT
query again, you should see the following result:
('The weather has become pleasant now',)
The output has been updated.
MySQL
The process of updating records in MySQL with mysql-connector-python
is also a carbon copy of the sqlite3
Python SQL module. You need to pass the string query to cursor.execute()
。 For example, the following script updates the description of the post with an id
2
の :
update_post_description = """
UPDATE
posts
SET
description = "The weather has become pleasant now"
WHERE
id = 2
"""
execute_query(connection, update_post_description)
Again, you’ve used your wrapper function execute_query()
to update the post description.
PostgreSQL
The update query for PostgreSQL is similar to what you’ve seen with SQLite and MySQL. You can use the above scripts to update records in your PostgreSQL table.
Deleting Table Records
In this section, you’ll see how to delete table records using the Python SQL modules for SQLite, MySQL, and PostgreSQL databases. The process of deleting records is uniform for all three databases since the DELETE
query for the three databases is the same.
SQLite
You can again use execute_query()
to delete records from YOUR SQLite database. All you have to do is pass the connection
object and the string query for the record you want to delete to execute_query()
。 Then, execute_query()
will create a cursor
object using the connection
and pass the string query to cursor.execute()
, which will delete the records.
As an example, try to delete the comment with an id
of 5
:
delete_comment = "DELETE FROM comments WHERE id = 5"
execute_query(connection, delete_comment)
Now, if you select all the records from the comments
table, you’ll see that the fifth comment has been deleted.
MySQL
The process for deletion in MySQL is also similar to SQLite, as shown in the following example:
delete_comment = "DELETE FROM comments WHERE id = 2"
execute_query(connection, delete_comment)
Here, you delete the second comment from the sm_app
database’s comments
table in your MySQL database server.
PostgreSQL
The delete query for PostgreSQL is also similar to SQLite and MySQL. You can write a delete query string by using the DELETE
keyword and then passing the query and the connection
object to execute_query()
。 This will delete the specified records from your PostgreSQL database.
Conclusion
In this tutorial, you’ve learned how to use three common Python SQL libraries. sqlite3
, mysql-connector-python
, and psycopg2
allow you to connect a Python application to SQLite, MySQL, and PostgreSQL databases, respectively.
Now you can:
- Interact with SQLite, MySQL, or PostgreSQL databases
- Use three different Python SQL modules
- Execute SQL queries on various databases from within a Python application
However, this is just the tip of the iceberg! There are also Python SQL libraries for object-relational mapping , such as SQLAlchemy and Django ORM, that automate the task of database interaction in Python. You’ll learn more about these libraries in other tutorials in our Python databases section.