まずは軽量データベースであるSQLiteの接続方法から解説します。単一ファイルでデータベースを構成し、アプリケーションに組み込んで使用出来るという特性から非常にお手軽です。 ドライバのインストール Pythonではバージョン2.5よりSQLite関連のライブラリが標準でついています。ドライバのダウンロードは必要ありません。 insertサンプル データ登録は次のように行います。 import sqlite3 connector = sqlite3.connect('sqlite_test.db') sql = "insert into test_table values('1', 'python')" connector.execute(sql) sql = "insert into test_table values('2', 'パイソン')" connector.execute(sql