The most subtle errors will often hide inside an ADODB.Command
object. In VB and ASP, by default, if you don't explicitly check the .Errors
property, you nothing will tell you that something has gone wrong with the database.
Having just discovered this, and having a large codebase with hundreds of ADODB calls: Is there any single setting that can cause these Command objects to throw a server error? Or do I really have to wrap or append every ADODB operation in a IF cmd.Errors ...
check?