I'm using ASP.NET Web Forms and trying to load data from SQL server. Here's the pseudo-code on how I do it:
connect1 = connect("database")
categories = connect.query("select * from category")
loop categories as category
print category
connect2 = connect("database")
subCategories = connect2.query("select * from subCategory where category = @0", category)
loop subCategories as subCategory
print subCategory
connect3 = connect("database")
items = connect3.query("select * from item where subCategory = @0", subCategory)
loop items as item
print item
end loop 'items
connect3.close
end loop 'subcategories
connect2.close
end loop 'categories
connect1.close
As you can see, there are lots of round-trips going on in my script, this is fine when I only have few records but when dealing with hundreds or more, this takes forever to display the data.
What can I do to reduce the number of round-trips? I thought of getting all the data at once from the database then categorize them in the application side but is that possible?