I am retrieving data from a remote MySQL table.
All OK and fields are retrieved.
This is my "JobDone" code:
B4X:
Sub JobDone(Job As HttpJob)
If Job.Success = False Then
Log("Error: " & Job.ErrorMessage)
Else
'Retrieve "ClientName" from table "login"
If Job.tag = "login" Then
Dim result As DBResult = reqManager.HandleJob(Job)
ProgressDialogHide
For Each records() As Object In result.Rows
Dim ClientName As String = records(0)'(result.Columns.get("clientname"))
Msgbox(ClientName & " ","")
Next
End If
End If
Job.Release
End Sub
But, I receive the following error on the Android device: