-
Hi, i use It’s hard for me to understand where exactly the problem is, on the Strapi side or on the Does the out-of-the-box compilation of |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I've put this verbatim into Google, first result: leads to https://www.sqlite.org/faq.html#q18 which says
searching this repo for "icu extension" https://github.com/search?q=repo%3AWiseLibs%2Fbetter-sqlite3+ICU+extension&type=issues So the answer to your question is no, but you can load an extension or create a custom build Edit: you can also easily test this yourself import Database from 'better-sqlite3'
const db = new Database(':memory:');
console.log(db.prepare(`SELECT 'a' == 'A'`).get());
console.log(db.prepare(`SELECT 'a' == 'A' COLLATE NOCASE`).get());
console.log(db.prepare(`SELECT 'э' == 'Э'`).get());
console.log(db.prepare(`SELECT 'э' == 'Э' COLLATE NOCASE`).get());
|
Beta Was this translation helpful? Give feedback.
I've put this verbatim into Google, first result:
https://stackoverflow.com/questions/3465118/nhibernate-sqlite-and-cyrillic-characters-case-sensitivity-and-fallback-queri
leads to
https://www.sqlite.org/faq.html#q18
which says