3. How to get table names using sqlite3
페이지 정보
작성자 관리자 댓글 0건 조회 4,664회 작성일 19-03-24 15:29본문
3. How to get table names using sqlite3
import sqlite3
conn = sqlite3.connect("test.db")
res = conn.execute("SELECT name FROM sqlite_master WHERE type='table';")
for name in res:
print name[0]
댓글목록
등록된 댓글이 없습니다.