Features of ADO in Visual Basic

You might also like

Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1of 2

Features of ADO in Visual Basic

The concept behind Visual Basic ADO was Universal Data Access (UDA), where one database access method could be used for any data source; it was designed to replace both DAO and RDO. ADO is more flexible using ADO, one could develop a prototype database application using MS Access in the back-end, and with a "flick of the wrist" (i.e., with very little coding changes) "upsize" that same application to use Oracle or SQL Server. As far as RDO is concerned, no new versions of it have been developed beyond the version that shipped with Visual Basic, and there are no future plans for it.

Visual Basic and Databases is a tutorial that provides a detailed introduction to using Visual Basic for accessing and maintaining databases. Topics covered include: database structure, database design, Visual Basic project building, the DAO Data Access Object data control, data bound controls, proper interface design, Structured Query Language SQL This tutorial describes how you can use ADO objects in VB6. Now days, almost any time you write full fledged database application you will want to use ADO. Along with this, as your applications become more and more complex you will probably not want to rely on Visual Basic's data controls, but instead use the ADO objects directly. Read on to find out exactly how this can be done
.

ADO delivers high-performance data access Microsoft would like you to use ADO to access your data, but is it the right solution for you? Follow along with our step-by-step example to learn more about this technology and see what advantages there are to using it.ActiveX Data Objects ADO is Microsoft's premier data access technology. ADO Export 1 (Windows)
ADO Export for ADO/OLE DB/ODBC Databases is a powerful utility to export your data. Supported formats are: Text, DIFF, SYLK, PDF, MS Access, MS Excel, MS Word, RTF, HTML, XML, PDF, DIFF Data Interchange Format File, Lotus 123, Quattro Pro SQL Script Insert, Windows Clipboard, SPSS Format, LDAP Interchange Format... Tags: Adobe PDF, Microsoft Corp., CevenSoft, Microsoft Windows, LDAP, Microsoft Windows 98, Operating Systems, Microsoft Office, Software, Directory Services, Enterprise Software, Office Suites

The ADO architecture makes the very heart of application development in Visual Basic that involves interaction with the databases. Considering that ADO acts as an interface between a Visual Basic application and the data source, providing all the objects and methods of data access, the

whole business of database manipulation in Visual Basic environment thus comes to hinge on the ADO architecture. 1. Author delves into ADO concepts from a Visual Basic programming perspective to how the injudicious use of ADO objects and methods affects not only the execution but also the performance of a Visual Basic program. The author looks at some common slip-ups that often cause problems in the Visual Basic code.

You might also like