Ronald Hoek
Ronald Hoek
I'm using the following unlocker tool, which specificly has a portable version: http://www.emptyloop.com/unlocker/
Might be because de IDE itself is holding a reference to the interface - this way the object will not be freed when de application is closed and FastMM collects...
You should set the correct HTTP-header before sending the reqeust... Ex. based on 'DelphiRestDemo' (uFrm_PersonList.TFrm_PersonList.RefreshList) without header: ``` vResponse := Dm.RestClient.Resource(CONTEXT_PATH + 'persons') .Accept(RestUtils.MediaType_Json) .Get(); ``` with header: ``` vResponse...
Why not define the string type using defines and use it so there's no need for the defines inside the class. This way you can use it for all other...
Ah, sorry about that - it was just a copy-paste from some unit I knew it was in... BTW: starting with the unicode versions of Delphi, the define 'UICODE' was...
You cloud add a deprecated alias... for backwards compatibility ``` type TRestClient = TJsonRestClient deprecated 'Use TJsonRestClient'; ```
Might this issue be a result of the new SSL encryption policy of MS. This requires SHA 256, which is not supported in XP.
> Is there a work around for creating a mock database from my DbContext using spatial indexing? I'm thinking maybe working around (removing) the spatial indexes during database creation to...
> Apparently I'm a rare SQL spatial user. There are a lot of tunable parameters in a [MS-SQL spatial index](https://docs.microsoft.com/en-us/sql/relational-databases/spatial/spatial-indexes-overview?view=sql-server-ver15). Would EF Core support specifying the extent of the spatial...