Yauhen Saroka
Yauhen Saroka
> As far as I found out sqlite only supports case insensitive search with ASCII characters. Yes it is. The SQLite API has a sqlite3_create_function(): https://www.sqlite.org/c3ref/create_function.html Probably, you can override...
Another solution is to store additionally "note_text_lowercase" and "file_name_lowercase" fields for the corresponding values in lower case and compare them with the query string reduced to lower case. But i...
> I don't really want to introduce an external dependency to QOwnNotes. I agree, bad idea. Sorry, I thought that Qt SQLite driver has a native ability to define custom...