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)
반응형
'Error' 카테고리의 다른 글
[ppt] 파워포인트, 백신 프로그램으로 인해 프레젠테이션을 열 수 없을 때 해결 방법 (1) | 2021.11.06 |
---|---|
remote: Permission to A denied to B (0) | 2021.09.29 |
libpng warning: iccp known incorrect srgb profile 해결 (0) | 2021.09.23 |
laravel Error: To enable extensions, verify that they are enabled in your .ini files 해결 (0) | 2021.07.05 |
PHP에러: Array to string conversion in (0) | 2021.06.24 |
댓글