Most voted "mormot" questions
7 questions
Sort by count of
-
5
votes1
answer739
viewsDeserialization of Object JSON morMot
I am trying to deserialize a JSON Object with an objectlist, following the example of the forum mormot does not work, someone can help me: Memo.Text :=…
-
3
votes1
answer669
viewsHow to install mORMot?
The site is confusing, the documentation talks little about the installation process. I added the libraries in the path lib and it didn’t work, some projects just didn’t compile. Then I would like…
-
1
votes1
answer509
viewsGet JSON return without "result" in Ajax or return without "result" in Delphi
I am generating a JSON in Delphi with mORMot and I need to pick it up on a page to generate some graphics with Google Chart, however the Delphi return me the JSON within a result. I just mount the…
-
1
votes2
answers1072
viewsHow to order Record in Delphi (similar to ORDER BY)?
I bring some bank records with a specific sorting and play into a vector of the type record. Then I need to add more items in this array keeping the initial sort. How the sort is done in the SQL the…
-
1
votes1
answer275
viewsDigital Certificate to receive HTTPS requests via AJAX
Does anyone know what kind of digital certificate is needed to use on mormot to receive requests AJAX via HTTPS? Also, how to install it in windows? If you have an example (preferably using Delphi…
-
0
votes1
answer49
viewsSerialization Mormot Object with Arraydinamico
type TRecordInstructions = record TextInstructions : RawUTF8; end; TArrayInstructions = array of TRecordInstructions; type TDoctoVO = class private p_customer : Integer; p_messages : RawUTF8;…
-
0
votes1
answer243
viewsDestroy Tlist Memory
I created this object list with mormot and it won’t let you destroy the Tlist Created after use: type TTesteVO = class private fcodigo : Integer; fnome : String; frespostas : String; ftotal : Real;…