I keep running into a problem with the debugger freezing up. I'm trying to pull results from a query into an array (not more than 10 rows)
cmd.ExecuteReader();
while (rdr.Read() == true) { letter
= rdr[0].ToString();
i += 1;
}
if I comment out the "letter
= rdr[0].ToString();" portion of code, the project runs fine. With that code there, I can not step into the proc from the SQL test script. No errors are raised. VS just freezes.

results to string array for reference within CLR Proc
Aaron Oneal
Hi,
Were you able to resolve this issue I tried this code and i am able to debug this just fine.
Does the problem occur only during debugging or outside of debugging as well (executing the test script without debugging) Are you able to successfully debug (or just execute) without the assignment statement
Thanks,
-Vineet.