-
[Python] sqlite3 + python 데이터베이스 연동하기프로그래밍/Python 2020. 12. 30. 21:11
날짜 : 20.12.30
작성자 파이썬 작업 버전 : 3.8.6 64bit
필요 패키지 : sqlite3 (파이썬을 설치하면 이미 설치되어 있다.)
필요 프로그램 : db browser for sqlite (데이터베이스를 시각적으로 보기 위해서 설치한다!)
db browser for sqlite 설치 과정
Downloads 클릭 / Standard: 일반적인 설치파일 .zip: 컴퓨터에 설치되는게 아니라서 usb에 넣어 언제든지 실행시킬 수 있다. DB Browser for SQLite 실행 화면 기본 작업
import sqlite3 #connect함수로 데이터베이스 생성 conn = sqlite3.connect("C:/Users/오명균/Desktop/company.db") #데이터 전달을 위해 커서 객체 생성 cursor = conn.cursor() print(type(cursor))
데이터 삽입(insert), 추출(select)
cursor.execute( 'create table employee(name, age) ') #테이블 + 열(column) 생성 # 값(데이터) 삽입하기(insert) sql = 'insert into employee values (?, ?)' # 선언부 + 데이터입력부를 따로 만들어 데이터 삽입에 용이하도록 만들었다 cursor.execute(sql, ('o myeong gyun', 24)) conn.commit() # 변경사항이 DB에 반영되도록 한다 #데이터 추출하기 insert = 'select name, age from employee' rows = cursor.execute(insert) for row in rows: print(row)
employee 테이블이 만들어진 모습 데이터가 삽입(insert)된 모습 테이블 삭제하기
#데이블 삭제하기 cursor.execute( 'drop table if exists employee' )
'프로그래밍 > Python' 카테고리의 다른 글