Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 1.09 KB

File metadata and controls

24 lines (19 loc) · 1.09 KB
title Getting Data
description Getting Data
author rothja
ms.author jroth
ms.date 01/19/2017
ms.service sql
ms.subservice ado
ms.topic conceptual
helpviewer_keywords
ADO, getting data

Getting Data

ADO Fundamentals, and the HelloData example in particular, introduced the four primary operations involved in creating an ADO application: getting data, examining data, editing data, and updating data. This section discusses getting data in more detail.

On a basic level, several ADO objects contribute to the operations of getting data. First you must connect to a data source using an ADO Connection object. Then you pass instructions to the data source using an ADO Command object. Finally, you most often receive data in an ADO Recordset object.

This section contains the following topics.