hi,
I'm new to CLR Programming, here i'm trying to debug:
'
'
'
'
Dim objReader As SqlDataReader = objCmd.ExecuteReader
While (objReader.Read())
Ackprocess(objReader(1).ToString())
End While
objReader is the sqlreader, objCmd sqlcommand
the debug cursor is not processing to the while loop.
thanks,