ADO の conn のエラー処理についてASP

conn.Errors.Clear ' Clear the errors
set rs.Excute( sql )

If conn.Errors.Count = 0 then
'
'
'
rs.close
' if Execute error occurred , you do not have to close recordset
Else
response.write( "Connection error occurred:" )
For j = 0 to conn.Errors.Count - 1
Response.Write( conn.Errors(j).Description )
Next
conn.Erros.Clear
End if




http://www.geocities.jp/cofe_fd3/ADO.htm