Free Newsletters:
DatabaseDaily  
Database Journal
Search Database Journal:
 
MS SQL Oracle DB2 Access MySQL PostgreSQL Sybase PHP SQL Etc SQL Scripts & Samples Links Database Forum

» Database Journal Home
» Database Articles
» Database Tutorials
MS SQL
Oracle
DB2
MS Access
MySQL
» RESOURCES
Database Tools
SQL Scripts & Samples
Links
» Database Forum
» DBA Jobs
» Sitemap

News Via RSS Feed


follow us on Twitter





New Security Features Planned for Firefox 4

Another Laptop Theft Exposes 21K Patients' Data

Oracle Hits to Road to Pitch Data Center Plans
Database Journal |DBA Support |SQLCourse |SQLCourse2









Systems Programmer / Software Engineer - C, Unix-Linux, Multi-threading, IPC
WSI Nationwide, Inc.
US-NY-New York

Justtechjobs.com Post A Job | Post A Resume

Featured Database Articles

MS Access

May 30, 2000

Introduction to Database Manipulation with ADO - Page 2

By Benoy Jose

The ADO Interface

ADO is built upon another layer called the OLE-DB. ODBC is one popular OLE-DB provider. ADO capabilities can vary depending upon the OLE-DB provider. Ado Capabilities can also vary widely depending upon the ODBC driver used. For example most ODBC drivers do not support all the cursor types, (cursor types are discussed later).

Exploring the ADO

The ADO Object model consists of seven objects namely:

The Connection, Command and Recordset objects each have a collection of properties. The Connection object also maintains a collection of Error objects detailing the errors we encounter while making database connections. Each member of this collection is a Field object which in turn contains information about individual fields in the Recordset.
However the Connection, RecordSet and Command objects are the most commonly used objects for interaction with databases. The different objects are used depending on the complexity of the data manipulation.

The Connection object is used to establish a connection to a database and can be used for simple database queries like select, insert, delete, update etc. It can be also used for other complex manipulations like stored procedures, but they are better done by other objects.

The RecordSet object is used for updating records, querying multiple tables and fields. Unlike the Connection object, the RecordSet gives more information on the transaction like the number of records updated, records deleted etc.

The Command object is capable of running stored procedures and SQL statements with multiple and complex parameters. 

The Field object represents an individual field in the RecordSet. It is generally used in conjunction with the RecordSet object for more flexibility in programming.

The Parameter object represents a parameter in a SQL stored procedure.

The Error object represents the ADO errors.

The Property object provides properties of different data providers like MS-Access, SQL Server etc.

Tools:
Add databasejournal.com to your favorites
Add databasejournal.com to your browser search box
IE 7 | Firefox 2.0 | Firefox 1.5.x
Receive news via our XML/RSS feed

MS Access Archives

Comment and Contribute

 


(Maximum characters: 1200). You have characters left.

 

 



Latest Forum Threads
MS Access Forum
Topic By Replies Updated
Help With Microsoft Access kasy 0 September 4th, 07:35 PM
Linked table not sorting or filtering - ODBC error Java 1 August 28th, 10:37 AM
Use Parameter in select statement (Sql in Microsoft Access) katty.jonh 1 July 25th, 06:45 AM
Query Issue algebroni 7 July 23rd, 04:22 PM