데이터베이스를 파이썬과 연결해서 쓸 때, SQLite를 사용하고자 한다면 파이썬에서 SQLite3를 이용해 쓸 수 있다.
여러가지 실습을 해봤지만 아직 파이썬을 왜 연결해서 쓰는지 정확하게 모르겠다. dbeaver이용하면 되는데 왜 파이썬을 쓰지?
일단, 내 생각에 dbeaver는 데이터 조회용이고, 파이썬에 데이터베이스를 연결하면 데이터를 조작?할 수 있어서 사용하는거라고 생각하고 있다.
터미널에서...
가상환경 키고, 해당 파일 들어가서
python
import sqlite3
conn = sqlite3.connect('데이터베이스이름.db')
cur = conn.cursor()
cur.execute(""""CREATE TABLE 테이블이름 (
컬럼이름1 컬럼성질1 성질2 ...,
컬럼이름2 컬럼성질1 성질2 ...,
컬럼이름3 컬럼성질1 성질2 ...);
""")
cur.execute("INSERT INTO 테이블이름 VALUES('값1', '값2', '값3')")
litst_data = [
[값1, 값2, 값3],
[값1, 값2, 값3],
...
]
cur.executemany("INSERT INTO 테이블이름 VALUES(?,?,?), list_data)
# This is the qmark style(must be a sequence):
cur.execute("insert into lang values (?, ?)", ("C", 1972))
# The qmark style used with executemany():
lang_list = [
("Fortran", 1957),
("Python", 1991),
("Go", 2009),
]
cur.executemany("insert into lang values (?, ?)", lang_list)
# And this is the named style(either a sequence or dict):
cur.execute("select * from lang where first_appeared=:year", {"year": 1972})
print(cur.fetchall())
conn.commit()
8.연결 해제
conn.close()