(어린이) 같은 문자를 가진 sqlite 데이터베이스에 csv 파일을 통해 읽는 문서 문자열을 삽입하려고하는데, 다음 오류 :pysqlite DatabaseError : text_factory를 사용하지 않는 한 8 비트 바이트 체크를 사용하면 안됩니다.
DatabaseError: You must not use 8-bit bytestrings unless you use a text_factory that can interpret 8-bit bytestrings (like text_factory = str). It is highly recommended that you instead just switch your application to Unicode strings.
문서를 삽입하기 전에 문자열을 unistring로 변환하고 있는지 확인하십시오.
unicode('Children's', 'unicode-escape')
데이터 저장을 위해 Django ORM을 사용하고 있습니다. 이걸 없애기 위해 내가 할 수있는 일이 있습니까?