「Python」SQLiteに接続してデータを削除するサンプル

環境
PyCharm 2021.3.3
Python 3.9.2
SQLite3

書式
1.connect(db名)
sqlite3.connect(r’パス名\test1.db’)
connectを利用してSQLiteに接続しています
2.execute(delete構文)
execute関数を使ってdelete構文を実行します。
3.conn.commit() commitで保存しています
4.conn.close() closeで接続を閉じます

使用例

# coding: utf-8
import sqlite3

#SQLite3に接続します
conn = sqlite3.connect(r'C:\study\sqlitedb\arkgame.db')

cft = conn.cursor()

try:
    #delete構文を実行します
      cft.execute("delete from usertbl where uid=1005")
#例外処理
except sqlite3.Error as e:
      print("error",e.args[0])

#コミットで保存
conn.commit()

#closeで接続を閉じる
conn.close()

 

Python

Posted by arkgame