chalupabatman
Member
- Joined
- Jun 3, 2014
- Messages
- 16
- Programming Experience
- Beginner
I query a database and Post() individually each result that meets the criteria of my select statement, and write the results on screen. If my query returns 5 results, I have to individually send all 5 requests. What is the best way for me to send all 5 at the same time (or sequentially) and associate the appropriate response to the appropriate Post()?
W/O code - my current process is
1) Query SQL Server
2) Store Returned result in a dictionary
3) Post() dictionary
4) Get() xml result
5) Repeat
W/O code - my current process is
1) Query SQL Server
2) Store Returned result in a dictionary
3) Post() dictionary
4) Get() xml result
5) Repeat
Last edited: