목록적재 (1)
without haste but without rest
02. Data Load with sqlite3
sqlite3 라이브러리 메커니즘 1. 파일 연결 ( sqlite3.connect() ) 2. 커서 객체 생성 ( conn.cursor() ) 3. 커서 객체로 작업 ( conn.execute() ) 4. 데이터 인출 (fetchall() ) // 옵션 따라서 fetch 시리즈가 있는 듯 import sqlite3 sqlite_file = './data/boston.db' # connecting to the database file conn = sqlite3.connect(sqlite_file) # initialize a cursor obect cur = conn.cursor() # define a traversing search cur.execute("SELECT * FROM boston LIMIT 5..
Homework/DataMining
2020. 4. 7. 10:34