P
Peter Strøiman
If I do something like this:
SqlConnection connection = new SqlConnection( ... )
SqlCommand command = new SqlCommand( ... )
// initialize command object.
command.ExecuteNonQuery();
How do I determine if the sql server generated a warning, and how do I
"read" the warning?
Thanks in advance,
Peter Strøiman
SqlConnection connection = new SqlConnection( ... )
SqlCommand command = new SqlCommand( ... )
// initialize command object.
command.ExecuteNonQuery();
How do I determine if the sql server generated a warning, and how do I
"read" the warning?
Thanks in advance,
Peter Strøiman