■ sqlite #1. 별도의 DB SERVER 가 필요 없이 DB 파일 기초하여 데이터베이스를 처리하는 엔진 import sqlite3 sqlite3.version sqlite3.__file__ # 임시 저장 영역 구축(메모리) # 메모리생성 conn = sqlite3.connect(':memory:') # transaction 실행 conn c = conn.cursor() # sql문 실행메모리 영역 # sql하기 위한 실행, 문자형식으로 작성 c.execute('create table emp(id integer, name char, sal integer)') # 문자 insert 실행시, "" or ''. 단, insert문 을 ''으로 했다면, 문자입력할 때에는 ""으로 작성하는 것이 가장 bes..