ADO.Connection Updated to ADODB.Connection

Last reviewed: December 11, 1997
Article ID: Q162840
1.00 WINDOWS kbprg kbnetwork

The information in this article applies to:

  • Microsoft Internet Information Server, version 3.0
  • Microsoft Active Server Pages, version 1.0

Summary

ADO.Connection was changed to ADODB.Connection in the final released version of Microsoft Active Server Pages, version 1.0.

More Information

Scripts 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") .........%>

REFERENCES

For 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 Layout

Active 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
KBSubcategory: AXSFHTML AXSFCompADO AXSFDataBase
Additional reference words: 1.00
Keywords : AXSFCompADO AXSFDataBase AXSFHTML kbnetwork kbprg
Version : 1.00
Platform : WINDOWS


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: December 11, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.