Freetutes.com

Advanced VB6 tutorial - Learn Advanced VB6

Systems Analysis - System analysis and Design tutorial for Software Engineering

You are here: Visual Basic > Advanced VB6 tutorial > Chapter 9

Sponsored Links

ADO Data-Access Models

 
ADO supports three data-access models. The term "data-access model" refers to the choice of technique that you use in your program to request the data provider to return data to a Recordset or to execute some action on the data.

Following are brief descriptions of each of the three data-access models covered in the chapter:

  • The Execute Direct model enables you to dynamically specify a SQL data-access statement every time you access data. The underlying provider then executes your statement to return the requested result or manipulate the data.

  • The Prepare/Execute model also enables you to dynamically specify a data-access statement. The first time that you run the statement, the underlying provider compiles your statement as a temporary stored procedure (whose lifetime lasts as long as its associated Connection). The provider then executes the temporary stored procedure. On subsequent requests to run the same statement during the lifetime of the Connection, the provider runs the temporary stored procedure.

  • The Stored Procedures model requires you to use an existing stored procedure that already belongs to the data that you are accessing.

The following sections discuss each of the three models in greater detail, as well as the reasons you might have for choosing a particular data-access model over the other two.

<< Previous | Content | Next >>

 

Home | Link to Us | Partner Links | About Us | Contact Us
Copyright © 2007-2008 Freetutes.com | All Rights Reserved