We've expanded our news coverage and improved our search! Visit news.oreilly.com for the latest or search for all things across O'Reilly!
advertisement

Article:
  ADO.NET Connection Pooling Explained
Subject:   recursion
Date:   2004-11-04 03:26:10
From:   kniva
not sure ,but don't you think that in the recursion it should be:


NUM_TRIES += 1;
dr = ExecuteReader(connString, eType,commandText);

instead


dr = ExecuteReader(connString, eType,commandText);
NUM_TRIES += 1;