HttpClient2 and Cursor question

Ekcentrik

Member
Licensed User
Longtime User
Hi ,
I am trying to read data from database and send them to a webpage using HttpClients2.

Here is my code:

Cursor1 = SQL1.ExecQuery("SELECT* from myclients")
For i=0 To Cursor1.RowCount-1
Cursor1.Position=i
'Msgbox(Cursor1.GetString("name"),"")
job1.Initialize("Job1", Me)
job1.Download2(myurl, _
Array As String("Name", Cursor1.GetString("name"))
Next

This code is sending only the last row until I put a kind of pause using Msgbox.
I would like to get it working without Msgbox in the loop.
Thank you for your help.

Marcel
 
Top