Error對象
在ADO Error對象包含有關有一個單一的操作過程中生成的數據訪問錯誤的詳細信息。
ADO生成每個差錯一個Error對象。 每個Error對象包含具體錯誤的詳細信息,並存儲在Errors集合。 要訪問錯誤,必須參考具體的連接。
要通過Errors集合循環:
<%
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
%>
句法
objErr.property
屬性
屬性 | 描述 |
---|---|
Description | 返回一個錯誤描述 |
HelpContext | 返回一個主題的上下文ID在Microsoft Windows幫助系統 |
HelpFile | 返回在Microsoft Windows幫助系統幫助文件的完整路徑 |
NativeError | 返回錯誤代碼從提供者或數據源 |
Number | 返回一個唯一的數字標識錯誤 |
Source | 返回產生錯誤的對象或應用程序的名稱 |
SQLState | 返回一個5個字符的SQL錯誤代碼 |