Related resources for ExecuteReader
  • Calling Any Stored Procedure In ADO.NET9/10/2023 9:36:17 PM. This one generic function can call any Stored Prodedure which take input parameters and return output parameters with the help of two-dimensions array. This is very helpful specially when you designin
  • Oracle Data Provider for .NET : Part III9/5/2023 5:57:57 AM. Oracle Data Provider for .NET (ODP.NET) is an implementation of a data provider for the Oracle database. ODP.NET uses Oracle native APIs to offer fast and reliable access to Oracle data and features f
  • Introduction To ADO.NET: Part 210/29/2020 1:48:15 AM. This article explains the basic details of ADO.NET Part 2.
  • Working With Command Object in ADO.NET7/9/2019 2:35:03 AM. In this article, we will learn how to work with the Command Object in ADO .NET and the Execute Methods in the Command Object.
  • ADO.NET FAQ's: Part I9/15/2014 6:33:26 AM. This is the Part I of ADO.NET. In this section we will touch base on one of important concepts in ADO.NET.
  • Accessing data using DataReader in VB.NET11/10/2012 3:04:32 AM. In this article you can see how to access the data using DataReader from the data source.DataReader is a readonly, forward only and connected recordset from the database.
  • Working With SqlDataReader Class in ADO.NET10/22/2012 8:44:12 AM. In this article you will learn about the SqlDataReader class and the ExecuteReader( ) method of the SqlCommand class.
  • How Do I Bind Datagrid with SqlDataReader in C#5/13/2012 8:18:18 AM. This article will show, how do we bind our binding controls like DataGrid, DataList using SqlDataReader.
  • Asynchronous Data Access using Callback Model12/13/2005 5:17:04 PM. The problem with the ADO.Net 1.x is that one thread has to wait for the other thread to complete. So to overcome this problem Microsoft has introduced Asynchronous data access, through which one can execute multiple threads at a time.