You are not logged in.
Pages: 1
Hello,
I’m studying the mORMot2 and its really great framework.
I created a small application that use a external database in Firebird to test the functionality and all works like a charm. Now, I need to implement the search in Firebird using case insensitive.
Could you please help me to understand how achieve that?
Thank you for amazing framework.
Offline
Firebird related question, check documentation. In short create field with collation, something like
CREATE TABLE PERSONS (
PERS_ID INTEGER NOT NULL PRIMARY KEY,
LAST_NAME VARCHAR(50) COLLATE UNICODE_CI,
FIRST_NAME VARCHAR(50) COLLATE UNICODE_CI
);
More details at https://firebirdsql.org/file/documentat … types.html
Offline
Pages: 1