The Error object contains details about data access errors
that have been generated during a single operation.
ADO generates one Error object for each error. Each Error
object contains details of the specific error, and are stored
in the Errors collection. To access the errors, you must refer
to a specific connection.
To loop through the Errors collection:
For Each ErrObj in ConnObj
Response.Write(ErrObj.Description & "<br />")
Next