Posts by Vinicius Sanchez • 27 points
6 posts
-
-1
votes1
answer418
viewsA: Delphi/Sendgrid integration
If you are using Restclient components of Delphi, in this case it would be Trestrequest, Trestclient, Trestresponse etc that under the cloths the Restdebugger uses, when passing the bearer you have…
-
0
votes1
answer144
viewsA: Error while converting SQL - Datasnap Rest
This happens because it is done automatically a encounter of your URL. In short, to get you through %FAZENDA% would have to be %25FAZENDA%25, because the character % is represented by %25. That’s…
-
0
votes1
answer793
viewsA: Example of request with Delphi
Hello, you can use Restrequest4delphi to consume the API: https://github.com/viniciussanchez/RESTRequest4Delphi Just do it here: begin TRequest.New.BaseURL('http://localhost:8888/users')…
-
0
votes3
answers920
viewsA: Scroll through all json nodes
You can browse the JSON using a "for in" as shown below: const JSON = '[{"symbol":"KYCT","status":"ACTIVE"},{"symbol":"UNDA","status":"ACTIVE"},{"symbol":"QUIA","status":"ACTIVE"}]'; var LJSONValue:…
-
1
votes3
answers50
viewsA: Sintax error at or near "Select"
Try to clear SQL from your query first.. Query.SQL.Clear; Or instead of using the Add function use Text: Query.SQL.Text := '';
-
1
votes3
answers695
viewsA: How to create a JSON Object in Delphi
It’s missing instantiating your object: objeto := TJSONObject.Create; Also remember to destroy the same not to give memory Leak.