Android Question JRDC2 Verification

makis_best

Well-Known Member
Licensed User
Longtime User
Hi

I am sending from my Android app some records to a MSSQL Server.
Is there any way to verify that these records "reach" MSSQL Server?

Thank you
 
Solution
There is no such thing. Assuming that you are sending a batch request, all commands are executed with a single transaction. This means that either they all succeed (and Job.Success = True) or they all fail.

makis_best

Well-Known Member
Licensed User
Longtime User
I'm not 100% sure what you mean with "verify". If Job.Success is true then the server responded successfully.
I have this case.
Let say that I want to transfer 10 records to MSSQL Server.
Job.Success return true as you say but with a simple
select I find out like that only 8 records inserted on SQL table.
 
Upvote 0
Top