Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>There are a few options for solving this:</p> <ol> <li><p>Replacing all accented chars in the query before executing it, e.g. </p> <blockquote> <p>"Psychédélices" => "Psychedelices"<br> "À contre-courant" => "A contre-courant"<br> "Tempête" => "Tempete"<br> etc.</p> </blockquote> <p>but this only works for the input so you must not have accented chars in the database itself. Simple solution but far from perfect.</p></li> <li><p>Using a 3rd party library, namely ICU (links below). Not sure if it's the best choice for iPhone though.</p></li> <li><p>Writing one or more custom C functions that will do the comparison. More in the links below. </p></li> </ol> <p>A few posts here on StackOverflow that discuss the various options:<br> <a href="https://stackoverflow.com/questions/611459/how-to-sort-text-in-sqlite3-with-specified-locale">How to sort text in sqlite3 with specified locale?</a><br> <a href="https://stackoverflow.com/questions/181037/case-insensitive-utf-8-string-collation-for-sqlite-c-c">Case-insensitive UTF-8 string collation for SQLite (C/C++)</a><br> <a href="https://stackoverflow.com/questions/779853/how-to-implement-the-accent-diacritic-insensitive-search-in-sqlite">How to implement the accent/diacritic insensitive search in Sqlite?</a> </p> <p>Also a couple of external links:<br> <a href="http://ioannis.mpsounds.net/blog/2007/12/19/sqlite-native-unicode-like-support/" rel="nofollow noreferrer">SQLite and native UNICODE LIKE support in C/C++</a><br> <a href="http://www.mail-archive.com/sqlite-users@sqlite.org/msg42923.html" rel="nofollow noreferrer">sqlite case and accent insensitive searches</a> </p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload