Client/Server Performance, Part 1: Blocking
June 16, 2010 Michael Sansoterra
It is no secret that read performance can generally be improved by the age-old “blocking” mechanism whereby many rows are fetched at once in preparation for a program to process them. So how is blocking done in the client/server world? Assuming that the good old IBM i will be the server, the following code samples (C#, Java, VBA, and DRDA) show an example of how to increase the amount of data that can be transferred from the server to the client. C# Using ADO.NET and the IBM DB2 UDB for iSeries .NET Provider For applications that need to buffer large |