SQLite3 no such collation sequence: UNICODE_en-US_LINGUISTIC_IGNORECASE

47 Views Asked by At
con = sqlite3.connect(path)
cur = con.cursor()
cur.execute('select * from Table1')

In this Python code, I get an error like

collation sequence: UNICODE_en-US_LINGUISTIC_IGNORECASE

How can I get data from this Table1?

0

There are 0 best solutions below