[SQLite] Python 환경에서 insert 처리
2020. 5. 31. 14:04ㆍDataBase/SQLite
반응형
I. 테이블 데이터 확인

II. 테이블에 데이터 Insert 처리
- DB : sqlite
- TABLE : tblmember
단일 레코드로 삽입시 (execute 함수)

다중 레코드 삽입시 (executemany 함수)

결과는 동일
III. 테이블 데이터 확인

SOURCE CODE
hyunmin94/study_exam
Contribute to hyunmin94/study_exam development by creating an account on GitHub.
github.com
반응형
'DataBase > SQLite' 카테고리의 다른 글
[SQLite] 스크립트 불러와서 쿼리실행 (0) | 2020.05.31 |
---|---|
[SQLite] 트랜잭션 작업 스크립트에 저장 (0) | 2020.05.31 |
[SQLite] Python 환경에서 update 처리 (0) | 2020.05.31 |
[SQLite] Python 환경에서 select 처리 (0) | 2020.05.31 |
[SQLIte] 설치방법 (0) | 2020.05.28 |