[Python] Sqlite3 간단한 예제
2022. 3. 29. 23:24ㆍIT
간단하게 Sqlite3를 사용하는 법을 다음과 같이 공유한다. 우선 sqlite3를 설치하기 위해서 pip. 명령은 다음과 같다.
pip install pysqlite3
import sqlite3
dbCon = sqlite3.connect("config.db")
db = dbCon.cursor()
table_name = 'config'
cursor = db.execute("SELECT * FROM sqlite_master WHERE name = ?", (table_name,))
if cursor.fetchone():
print("database table exist")
else:
db.execute(
"CREATE TABLE config (idx INTEGER, txt TEXT)")
db.execute("INSERT INTO config (idx, txt) VALUES(?, ?)", (1, "First data",))
dbCon.commit()
cursor = db.execute("SELECT * FROM config WHERE idx = ?", (1,))
rows = db.fetchall()
print(rows)
반응형
'IT' 카테고리의 다른 글
[Python] 엑셀을 수식 자동으로 수정하기 (0) | 2022.04.23 |
---|---|
[Python] Database의 내용을 terminal에 table로 예쁘게 출력하기 (0) | 2022.03.30 |
[Python] Dictionary Mapping, 함수 포인터? (0) | 2022.03.29 |
git 사용의 기초 (0) | 2022.03.28 |
#7 전자액자 프로젝트 - 소스보기 2/2 (0) | 2022.03.26 |