我写了以下代码:
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;"
感谢任何帮助