我正在尝试在经典 ASP 中构建数据网格。我在这里和那里阅读了几篇文章,并试图使用 MSDataShape 来实现这一点。
我从未使用过 MSDataShape,所以完全不知道。
'Create the ADO Connection object.
set oCon = Server.CreateObject("ADODB.Connection")
'--- Generate the connection string
sCon = "Data Provider=Microsoft.Jet.OLEDB.3.51;Persist Security Info=False;"
sCon = sCon & "Data Source=" & Server.MapPath("Northwind.mdb")
oCon.ConnectionString = sCon
'--- Specify that we will use the Data Shaping provider.
oCon.Provider = "MSDataShape"
'--- Open the connection
oCon.Open
我收到以下错误:
Microsoft OLE DB 服务组件错误 '80040154' 类未注册 /DG/test.asp,第 39 行 -</p>