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?
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?
Copyright © 2021 Jogjafile Inc.