TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About DataReader
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mahesh Chand (7)
Rama Mohan (2)
Mike Griffin (2)
C# Curator (2)
Alok Pandey (2)
Sushila Patel (2)
Chetan Sanghani (1)
Paras Babbar (1)
Prashanth Chindam (1)
Tin Lam (1)
Jignesh Trivedi (1)
Rajul Aggarwal (1)
Sanjay Kumar (1)
John Godel (1)
Ganesh Shevate (1)
Vithal Wadje (1)
Ashish Bhatnagar (1)
Jaish Mathews (1)
odegirmenci (1)
John Charles Olamendy (1)
Abhijit Patil (1)
Dinesh Dugg (1)
Suresh Paldia (1)
Sibeesh Venu (1)
Sekhar Srinivas (1)
Mukesh Kumar (1)
Rakesh (1)
Yadagiri Reddy (1)
Manoj Kumar (1)
C Vinod Kumar (1)
Shivani (1)
Ashish Singhal (1)
Amit Choudhary (1)
jeff fernandez (1)
Amit Kumar Agrawal (1)
Michael Milonov (1)
Rick Malek (1)
Pramod Singh (1)
Hari Shankar (1)
Arnold Park (1)
Jigar Desai (1)
Related resources for DataReader
No resource found
Efficient Data Retrieval with ADO.NET SqlDataReader
7/23/2024 6:15:48 AM.
SqlDataReader in ADO.NET provides fast, forward-only data retrieval from SQL Server databases. It reads data as a stream, minimizing memory usage, and making it ideal for large datasets. Unlike SqlDat
Fetch Data From Oracle Database Using C#
6/5/2024 5:32:26 AM.
his code demonstrates fetching data from an Oracle database using C# in ASP.NET. It connects to the database, executes a query to retrieve student data (name and roll number), and displays the results
Inserting & Retrieving Images from SQL Server Database without using Stored Procedures
5/31/2024 10:06:56 AM.
Learn how to manage images in SQL Server directly from your C# application. Utilize ADO.NET for seamless image insertion and retrieval without stored procedures. Streamline database operations efficie
Reflecting Data In .NET Classes - Part IV - From Database Table
5/17/2024 10:36:57 AM.
In this segment of "Reflecting Data In .NET Classes," Part IV focuses on generating .NET classes from database tables. Utilizing reflection, it maps database schema to object-oriented struct
How To Call Stored Procedure In Entity Framework
10/10/2023 8:44:08 AM.
In this article, I will demonstrate how to call a stored procedure in entity framework? There are many different way to call stored procedure from entity framework.
Populating DataView From DataReader
10/6/2023 11:12:43 AM.
This article will illustrate how to populate DataView from DataReader in C#. In many scenarios we may have the data in DataReader which is required to be bind to GridView or some other control. In thi
Oracle Data Provider for .NET : Part IV
9/5/2023 6:00:33 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
Oracle Data Provider for .NET : Part III
9/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
How to Retrieve Data From MYSQL Database in C#
7/31/2023 8:38:44 AM.
Install MySQL Connector/NET: Before you start, make sure you have MySQL Connector/NET installed in your C# project. You can download it from the MySQL website or use NuGet to install the package.
DataReader in ADO.NET
5/31/2023 7:43:02 AM.
C# DataReader class represents a data reader. The DataReader provides a read-only, forward-only mechanism to access data via ADO.NET from a datasource.
DataReader In C#
2/27/2023 5:36:00 AM.
ADO.NET DataReader is used to store data returned from a database in a fast, forward-only, in-memory records. In this article, learn how to use a DataReader in a C# application.
How To Use Stored Procedure By Getting Database Connection Using DbContext In Repository
7/9/2022 9:30:13 AM.
Sometimes we need to create API/s and perform custom operation with database where we can perform create, insert, update and delete on entity/ties or table/s according to our requirement. Then we can
Export Gridview Records to Text File Using ASP.Net C#
5/25/2021 7:00:35 AM.
In this article, we will learn how to export Gridview records to a text file using ASP.NET C#.
Data Classes On ADO.NET
3/10/2021 4:06:21 PM.
In this article, you will learn about Data Classes on ADO.NET.
Customized Binding Using CollectionBase
11/2/2020 5:28:02 AM.
In this article I am trying to explain the use of CollectionBase class. In a simple example I used CollectionBase to bind a DataGrid control with data from Employees table of NorthWind database. So pl
Kuti.Data
11/1/2020 11:49:05 PM.
The attached source code file has two parts - DataObject directory and Automatic SQL Generator.
DataReader And DataSet
11/1/2020 9:05:25 AM.
ADO.NET is part of Microsoft.NET which comprises a set of tools and object model for accessing a data source. The objects definition appears under the System.Data namespace. It allows applications to
ADO.NET : In Depth Tutorial
10/29/2020 9:02:30 AM.
This tutorial describes about Building the middle tier in the Microsoft .NET Framework using ADO.NET.
ADO.NET Objects: Part I
10/29/2020 7:27:45 AM.
In this article I will explain about ADO.NET objects. This will help you in understanding them in an easy manner.
Understanding ADO.NET Components
10/29/2020 4:28:12 AM.
In this article I will explain about ADO.NET Components.
Introduction To ADO.NET: Part 2
10/29/2020 1:48:15 AM.
This article explains the basic details of ADO.NET Part 2.
Windows application for database information
10/28/2020 4:06:34 AM.
This example deals with displaying databases installed on the current computer, the tables of the selected database and the data of the selected table.
DataReader Vs DataSet?
6/10/2019 11:26:12 AM.
In this article, I compare and differentiate DataSet vs DataReader and when to use a DataSet over a DataReader and vice versa.
Building the Middle Tier in the Microsoft .NET Framework
12/17/2018 8:47:09 AM.
This article assumes a working knowledge of ADO.NET, and examines it and its influence on the middle tier. It introduces a fictitious business model and lists some requirements to help us focus on the
Convert DataReader To DataTable
11/18/2015 6:03:56 AM.
In this article we will learn how we can convert Microsoft ADOMD DataReader to DataTable.
Understanding DataAdapter in 2mins
11/6/2015 4:15:53 AM.
This video explains understanding of DataAdapter in 2 minutes. Watch the complete video series of ADO.NET with examples at: http://www.pluralsight.com/courses/adodotnet-by-example
Connected V/S Disconnected Architecture In C#
10/14/2015 2:14:23 AM.
In this article, I will explain you what is connected and disconnected architecture in C# when you are working with the database.
ADO.NET Technique With ASP.NET
10/13/2015 1:35:56 PM.
In this article, I will explain ADO.NET concepts that include DataTable, DataSet, DataReader and DataAdapter.
How to Convert Dataset and Datareader to List
11/8/2014 12:50:48 PM.
This article explains how to convert a DataSet and DataReader to a list using a simple WPF application.
Accessing data using DataReader in VB.NET
11/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.NET
10/22/2012 8:44:12 AM.
In this article you will learn about the SqlDataReader class and the ExecuteReader( ) method of the SqlCommand class.
ADO.NET Application using MS Access 2007 database
9/29/2012 7:49:29 AM.
In this article I will explain you how to use ADO.NET technology to connect .NET console application and MS Access 2007 database.
Creating a Login User Control
5/19/2012 7:15:30 AM.
In this article, we have started with an introduction to the UserControl and have learnt to use the ADO+ DataReader.As we seen User Controls simplifies several common Web application scenarios.User Controls allow developers to easily define custom controls using the same programming techniques for writing Web Forms.
Word Jumble In Mobile
5/19/2012 6:40:38 AM.
Here is an application where u can Play Word Jumble in Mobile.
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.
Getting Records from a DataBase Using the DataReader Class in FSharp
10/25/2011 11:41:25 PM.
In this article you will learn how to use DataReader in F# and show records from a DataBase to the front-end.
Fastest way to populate datatable from database using IDataReader
10/4/2011 11:42:35 PM.
Here you will see the fastest way to populate a datatable from database using IDataReader.
Adding Editor, and Deleting data in Web Forms using ADO.NET
2/11/2010 12:35:31 AM.
In this article I will explain Adding Editor, and Deleting data in Web Forms using ADO.NET.
An Algorithm for Grouping Data On One Or More Fields Using A DataReader in .Net
1/18/2010 11:21:21 PM.
In this article you will learn how to use Algorithm for Grouping Data On One Or More Fields Using A DataReader in .Net
Creating an OleDb Command Object in ADO.NET
1/4/2010 12:34:17 AM.
In this article I will explain Creating an OleDb Command Object in ADO.NET.
Top 10 New Features in ADO.NET 2.0
5/15/2009 1:09:37 AM.
This article summarizes the new and updated features of ADO.NET 2.0, which ships with .NET Framework 2.0. In my following articles I will discuss these features in more details with sample examples.
Understanding ADO.Net Provider Factory in .Net 2.0
1/29/2007 3:47:21 AM.
This article describes the ADO.NET Provider Factory in .NET 2.0
Using ADO.NET concurrent model in Oracle database
12/6/2006 11:31:35 PM.
The most popular instrument to access database data for .NET applications is ADO.NET. This set of components contains three main classes those are used to manipulate and store data: DataReader, DataSet and DataAdapter.
Bulk Copy Operations in ADO.NET 2.0
10/26/2006 10:25:08 AM.
Bulk copying of data from one data source to another data source is a new feature added to ADO.NET 2.0. Bulk copy classes provides the fastest way to transfer set of data from once source to the other.
Using OLEDB in ADO.NET with COBOL
1/30/2006 12:10:49 AM.
The SqlClient class was created by Microsoft and is used primarily to access a SQL Server database.
Implementing Custom Paging in ASP.NET DataGrid Control
1/4/2006 1:14:45 AM.
This article shows you how to implement custom paging in ASP.NET DataGrid control.
How to Change DataGrid Header Text?
1/3/2006 11:24:38 PM.
This article shows you how to change the header text of a DataGrid programmatically.
Writing a Generic Data Access Component
1/3/2006 4:10:28 AM.
OK, I've received couple of emails people asking me how can they use a common data provider to access various types of data sources without loosing the power and flexibility of native data provider libraries.
ADO.NET Database Explorer
12/19/2005 3:42:54 AM.
The sample connects to the SQL server database and shows you a tree view like interface of all the tables.
ADODataReader- Writing DataSets to XML
12/19/2005 1:47:36 AM.
This file uses ADODataReader and other objects to write DataSets to XML and filling data from the XML files.
SQLDataReader Vs. DataSet
12/17/2005 7:46:51 AM.
To compare and contrast SQLDataReader and SQLDataSetCommand.
Anonymous Method to Retrieve Data Reader Passed from DAL
12/13/2005 5:46:11 PM.
Anonymous method is a new feature in C# 2.0 that allows you to define an anonymous method called by a delegate.