
Not receiving any error notifications from ADO
I have an ADO connection and an ADO command. The connection opens just fine,
and I can create and assemble a valid command. The command is connecting to
a Stored Procedure in MSSQL 7.0. The stored procedure is using "RaisError"
to report and error, such as trying to delete a default piece of data.
However, my code which simply creates the command, adds parameters, and
executes does not cause any errors to be returned to the VB app. Now, if I
actually inspect the Errors collection, the message is there, but it just
doesn't cause the app to pause or throw to an error handler or anything. Why
is that. Does this have to do with the severity level of the error or
something like that?
Matthew