Impact of Gen-AI on IT Jobs - Growth Mindset Show
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
iOS
Java
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
11
Reply
Define Execute Reader?
Pankaj Pathak
12y
4k
0
Reply
Delete Row
Delete Column
Insert Link
×
Insert
Cancel
Embed YouTube Video
×
Width (%)
Height (%)
Insert
Cancel
Table Options
×
Rows
Columns
First row as header
Create Table
Insert Image
×
Selected file:
Alignment
Left
Center
Right
Select an image from your device to upload
Upload to Server
Cancel
Submit
Execute Reader is ADO.Net command and it works forward only and read only. this fetch the record one by one from database
Pramod Lawate
12y
2
ExecuteReader is used for any result set with multiple rows/columns (e.g., SELECT col1, col2 from sometable).
Bharathi Raja
7y
1
the execute reader get single data one by one from database
Keerthi Venkatesan
9y
0
Execute Reader is ADO.Net command and it works forward only and read only. this fetch the record one by one from database the biggest drawbacks is it is not move backward direction so it is not updated a data.it is using for read a data from database
santosh kumar
10y
0
Fetches single record at a time from database.
Srikanth Reddy
10y
0
ExecuteReader is used for any result set with multiple rows/columns (e.g., SELECT col1, col2 from sometable).
bharat aggarwal
10y
0
ExecuteReader is a predefined member method of Command Class which is used in ConnectionOriented Architecuter. Return type of the ExecuteReader() is DataReader used to execute the commands
Srinivas Pabballa
10y
0
ExecuteReader is a command method used with connection oriented. This command method needs open dadabase connection. It works in forward only mode. If we want to retrieve more records then we will use datareader.
sridhar thota
10y
0
The ExecuteReader() in C# SqlCommand Object sends the SQL statements to the Connection Object and populate a SqlDataReader Object based on the SQL statement.
Vithal Wadje
10y
0
Execute Reader is an Connected ADO.NET object used to fetch single record at a time
nethaji naidu
12y
0
In ADO.net Execute Reader its for fetch record on by one , Reader always work forward, and for reader connection must require , cant work in disconnected mode.
Kunal Vaishya
12y
0
What is the difference between an ADO.NET Dataset and an ADO Recordset?
What is the use of SqlCommandBuilder?
Message