About ADODB
ADODB stand for ActiveX Data Objects Databases and it is an object model for manipulation of data access drivers. ADODB permit VB and VBA programmer access to ODBC drivers wich drive the database. Your declaration mean that you are creating an object named cnn1 is Connection. A connection is a link between your application and a database. ADODB is a database abstraction library for php Originally based on the same concept as Microsoft's ActiveX Data Objects. It allows developers to write applications in a consistent way regardless of the underlying database system storing the information. The advantage is that the database system can be changed without re-writing every call to it in the application. ADODB is easy to port because all the database dependant code are stored in stub functions without need to port the core logic of the classes. Database performance monitoring and SQL tuning with the performance monitoring classes in ADODB.
Related resources for ADODB
  • ADODB Services in .NET Applications Using C#2/6/2024 8:38:12 AM. In this insightful guide, "Modernizing ADO Applications in C# with ADO.NET," discover the transition from traditional ADODB-based systems to the revolutionary world of ADO.NET within the .NE
  • Generic 'T, K' Database Component11/26/2020 12:08:25 AM. I have written a C# 2.0 (Visual Studio 2005), Generic <T, K> Database component, The component has simplified the architecture and the implementation by allowing me to keep the number of overlo
  • ADODB Connection in .NET Application Using C#1/30/2012 9:56:08 PM. This article talks you through the use of an ADODB connection in a .NET application using the C# language through SQLEXPRESS. The example details the data access using ADODB, fetching a recordset and inserting a record into the database.
  • Accessing Sharepoint Portal Server 2001 in .NET8/29/2006 11:43:30 PM. Sharepoint portal server provides a set of COM API that can be used to access its functionality from .NET applications via COM Interoperability. In this article, I will show you how to import SPP functionality in your .NET application.