Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Moving Recordset to client machine from business login unit

Status
Not open for further replies.

miq

Programmer
Apr 24, 2002
315
PK
hi,

I want to learn efficient ways to transfer Recordset from middle tier to the client which is a different machine.
How can i achieve this with minimum network traffic.

middle tier gets recordset from DB tier using Client side cursor so, i guess the resulting recordset is at the middle tier (business tier). Calls from client to business tier can take all of the network resources by moving recordset to the client machine this continuous network traffic can be avoided but for this a heavy load while transferring recordset to client occurs bearing in mind about 10 to 100 clients can have access to the server at a time. Which makes recordset transfer load * 100. How can i minimize this impact on performance.

XML ??? or save recordset to disk and copy that file to all clients?? what else ????


Help !!!

Bye
miq

 
ADODB Recordsets have special marshelling to actually copy the entire recordsets, not just the interface, to the client. If you don't want to do that then I'd say send down XML to the client but I'm not sure if you'd have a very big saving of network traffic doing this.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top