SimpleSQLite
SimpleSQLite copied to clipboard
can not insert JSON data
If there is a single quote in the JSON data, it will be enclosed in double quotes, causing a syntax error and making it impossible to insert.
Value.to_query() in query.py
if value.find("'") != -1:
return f'"{value}"'
What should I do?