본문 바로가기
Error

python - SQLite objects created in a thread can only be used in that same thread 해결

by 고체물리학 2021. 2. 22.

Python에서 sqlite3과 연동시에 Thread에러가 남

 

해결: DB랑 연결한 코드 뒤에 check_sam_thread=False 추가함

 

에러명: SQLite objects created in a thread can only be used in that same thread

 

수정 전 코드

con = sqlite3.connect("sample.db")

 

수정 후 코드

con = sqlite3.connect("sample.db",check_same_thread=False)

반응형

댓글