最新的Web开发教程
 

ADO Description Property


<完成错误对象参考

Description属性返回包含错误描述的字符串。

这是Error对象的默认属性。 无论是供应商和ADO可能是错误的来源。

供应商应传递错误信息ADO。 当发生错误时,ADO应该创建一个错误对象,其中包含错误信息。 ADO也应Error对象添加到错误集合。

句法

strErrorText=objErr.Description

<%
for each objErr in objConn.Errors
  response.write("<p>")
  response.write("Description: ")
  response.write(objErr.Description & "<br>")
  response.write("Help context: ")
  response.write(objErr.HelpContext & "<br>")
  response.write("Help file: ")
  response.write(objErr.HelpFile & "<br>")
  response.write("Native error: ")
  response.write(objErr.NativeError & "<br>")
  response.write("Error number: ")
  response.write(objErr.Number & "<br>")
  response.write("Error source: ")
  response.write(objErr.Source & "<br>")
  response.write("SQL state: ")
  response.write(objErr.SQLState & "<br>")
  response.write("</p>")
next
%>

<完成错误对象参考