Database Anti-Pattern: Recursive Network Select
Recursive Network Select is a pattern that occurs when a program makes a call to a database returning a resultset and then as it loops through that resultset it makes a call to the database for each record as it loops through the resultset. In extreme cases, the program will add additional levels of […]