1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Python × SQLite3 × DB Browser for SQLite】 PythonでDBを作成して、中身を確認する

Posted at

#目的
タイトルの通り。
Pythonにて標準ライブラリsqlite3を使用してデータベースを作成、
DB Browser for SQLiteを使用して中身を確認。

Pythonにて標準ライブラリsqlite3を使用してデータベースを作成

make_db.py
# データベースに文章を保存

# ライブラリをインポート
import sqlite3

db_name = "ManyTexts.db"
# データベースを作成
connect = sqlite3.connect(db_name)
cur = connect.cursor()


cur.execute('CREATE TABLE users(id INTEGER, name STRING , birthday STRING)')

# データの挿入
cur.execute("INSERT INTO users VALUES (1, '煌木 太郎', '2001-01-01')")
cur.execute("INSERT INTO users VALUES (2, '学習 次郎', '2006-05-05')")
cur.execute("INSERT INTO users VALUES (3, '牌存 花子', '2017-09-10')")

connect.commit()
connect.close()

「DB Browser for SQLite」 を使用して中身を確認

  1. 「DB Browser for SQLite」 をネットからインストール。バージョンは 3.12.2 (2021/10/1時点最新)
    https://github.com/sqlitebrowser/sqlitebrowser/releases/tag/v3.12.2

  2. 「DB Browser for SQLite」 をPCのアプリケーションへ移動させる

  3. 作成したデータベース(ManyTexts.db)上で右クリック,「DB Browser for SQLite」 を使い開く
    スクリーンショット 2021-10-01 19.21.14.png

  4. データベースのテーブル名(user)を指定する
    スクリーンショット 2021-10-01 19.23.53.png

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?