我写了以下代码:
strConnection ="Provider=SQLOLEDB;Server=PC-101\SQLEXPRESSR2;Database=LDS;Integrated Security=true"
Set rs = Server.CreateObject("ADODB.Recordset")
select_SQL = "select * from tblMonthlySales order by store_id"
On Error Resume Next
rs.open(strConnection , select_SQL)
If Err.Number <> 0 Then
response.Write(Err)
On Error Goto 0 ' But don't let other errors hide!
' Code to cope with the error here
End If
On Error Goto 0 ' Reset error handling.
我正在为我的数据库使用 SQL Server 2008。
而且我无法捕捉到错误并收到此消息
处理 URL 时服务器发生错误。请联系系统管理员。如果您是系统管理员,请单击此处了解有关此错误的更多信息。
我的连接字符串错了吗?
我也试过这个连接字符串:
strConnection ="Provider=SQLNCLI10;Server=PC-101\SQLEXPRESSR2;Database=LDS;Integrated Security=SSPI;DataTypeCompatibility=80;"
任何帮助表示赞赏