Posts by Dilermando Lima • 13 points
5 posts
-
0
votes1
answer12
viewsA: Take the object from the list or make a new select in the database?
@Alexandre Biancuzzi, It is a little difficult to suggest something, because I do not have all the knowledge of your code and its implementations nor your real need. Below is my contributions, maybe…
-
0
votes2
answers96
viewsA: A class is an instance?
Class is the recipe and the instant is the cake. Below the representation of a class ( only the structure ) containing the name attribute ( also part of the structure ) So far we have only the…
-
0
votes1
answer115
viewsQ: Hikari timeout oracle springboot
Hi, I’m trying to manually set up a connection pool with Hikari. I will need to do manual because the application will have its dynamic settings for connection to the databases and schemas/Sid. How…
-
0
votes1
answer820
viewsA: http post with Bodyrequest Sqlserver
I’ll leave the solution here, I was able to make the request POST passing data by body by sqlserver with the code below: -- Informação a enviar pelo body DECLARE @BODY_XML VARCHAR(8000) = ' <?xml…
-
1
votes1
answer820
viewsQ: http post with Bodyrequest Sqlserver
Hello, How do I get a post request by passing an xml as date? tried so on another GET request and it worked: DECLARE @Tabela TABLE ( CampoXML XML); DECLARE @URL VARCHAR(8000) SELECT @URL =…