ADO.Connection Updated to ADODB.ConnectionLast reviewed: December 11, 1997Article ID: Q162840 |
1.00
WINDOWS
kbprg kbnetwork
The information in this article applies to:
SummaryADO.Connection was changed to ADODB.Connection in the final released version of Microsoft Active Server Pages, version 1.0.
More InformationScripts written using pre-released versions of the Microsoft Active Server Pages require an update to all scripts that use ADO.Connection. For example, the following:
<% Set obectvar = Server.CreateObject("ADO.Connection") .........%>must now be changed to the following:
<% Set obectvar = Server.CreateObject("ADODB.Connection") .........%> REFERENCESFor additional information on the proper use of ADODB.Connection, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q158737 TITLE : How To Create a Simple Query in an ActiveX LayoutActive Server Pages online documentation:
http://localserver/IASDocs/ASPDocs/roadmap.asp.For the latest Knowledge Base articles and other support information on Visual InterDev and Active Server Pages, see the following page on the Microsoft Technical Support site:
http://support.microsoft.com/support/vinterdev/ |
KBCategory: kbprg kbnetwork
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |