当前位置: 首页 > 网络学院 > 服务端脚本教程 > ADO > ADO SQLState 属性

ADO
ADO DataTypes
ADO 摘要
ADO 实例

ADO SQLState 属性


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 357 ::
收藏到网摘: n/a

The SQLState property returns a string that contains a 5-character SQL error code returned by the provider. 
SQLState属性的作用是:返回一个包含一个“5字符”的由技术提供对象[provider]所返回的SQL错误代码的字符串。

Syntax
语法

strErrorSQL=objErr.SQLState

Example
案例

<%
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
%>

评论 (0) All

登陆 | 还没注册?