Posted
over 3 years
ago
by
edwinsn
Yes, "composition over inheritance"
|
Posted
over 3 years
ago
by
Bsaidus
Hi,To contour the problème, I used IdTCPClient to check the availibility of the server before creating the TSQLDBWinHTTPConnectionProperties instance.Thanks anyway
|
Posted
over 3 years
ago
by
ab
I guess this is about the memory reserved per active thread.There is a thread pool in the mORMot server, so even if the memory is released in the code, there is still around 2MB of memory reserved when you run a thread.So after a while, the memory
|
Posted
over 3 years
ago
by
ab
You are right.Should be fixed now with https://github.com/synopse/mORMot2/commit/ad229b03
|
Posted
over 3 years
ago
by
ab
You are right.Should be fixed with https://github.com/synopse/mORMot2/commit/bd6082d8
|
Posted
over 3 years
ago
by
ab
You are right.Should be fixed now with https://github.com/synopse/mORMot2/commit/c8f9830c
|
Posted
over 3 years
ago
by
ab
Yes use rowid if you have virtual tables.
|
Posted
over 3 years
ago
by
Bsaidus
I confirme, this is a Bug under Freepascal/lazarus.You can test your self the code posted in the lazarus forumhttps://forum.lazarus.freepascal.org/in … 544.0.html
|
Posted
over 3 years
ago
by
dcoun
TOrmInvcanceled=class(Torm)
private
Ftestid: PtrInt;
Fxml: rawutf8;
published
property testID: PtrInt read Ftestid write Ftestid;
property xml:rawutf8 read Fxml write Fxml;
end;procedure errororm;
var lis:ilist;
|
Posted
over 3 years
ago
by
Daniel_Andrascik
Egh, sorry. I didn't notice that TSqlDBSQLite3Statement is a descendant of TSqlDBStatement whitch implements ISqlDBStatement and ISQLDBRows interfaces.
|