results to string array for reference within CLR Proc
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.

