You are not logged in.
Pages: 1
Thank you very much! I will try
You can try to download it as a dynamic extension.
But you need to recompile SQlite3 static, disabling the following define in sqlite3mc.c :// #define SQLITE_OMIT_LOAD_EXTENSION 1 // we don't need/allow extension in an embedded engine
I will undefine SQLITE_OMIT_LOAD_EXTENSION, and define the Session Extension for the next static build.
Thanks! But how to load an extension for SQLite3 static?
I am trying to find out a way to load ICU extension for SQLite due to issue with 'case-sensitive LIKE for Cyrillic'. Is it possible to load and use the extension with static SynSQLite3Static? I found out that first I must enable sqlite to load extensions. But how to do it in mORMot?
I am trying to implement different ideas with this powerful framework. Now I am trying the following: If a user is admin he must be able to get all records from a table otherwise he must get only records corresponding to particular condition. I know how to implement it on client side but I want to make this on servers side. In the documentation I have found how to implement Per-table access rights. How can I implement my idea with per-record access rights?
Thanks in advance!
Pages: 1