Pankaj Pathak
Define Execute Reader?
By Pankaj Pathak in ADO.NET on Jul 03 2013
  • Pramod Lawate
    Aug, 2013 26

    Execute Reader is ADO.Net command and it works forward only and read only. this fetch the record one by one from database

    • 3
  • Bharathi Raja
    Jan, 2018 20

    ExecuteReader is used for any result set with multiple rows/columns (e.g., SELECT col1, col2 from sometable).

    • 2
  • Santosh Kumar
    Nov, 2015 27

    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

    • 2
  • Keerthi Venkatesan
    Apr, 2016 1

    the execute reader get single data one by one from database

    • 1
  • Sreekanth Reddy
    Nov, 2015 4

    Fetches single record at a time from database.

    • 1
  • bharat aggarwal
    Oct, 2015 16

    ExecuteReader is used for any result set with multiple rows/columns (e.g., SELECT col1, col2 from sometable).

    • 1
  • Srinivas Pabballa
    Aug, 2015 28

    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

    • 1
  • sridhar thota
    May, 2015 25

    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.

    • 1
  • Vithal Wadje
    Dec, 2014 31

    The ExecuteReader() in C# SqlCommand Object sends the SQL statements to the Connection Object and populate a SqlDataReader Object based on the SQL statement.

    • 1
  • nethaji naidu
    Jul, 2013 10

    Execute Reader is an Connected ADO.NET object used to fetch single record at a time

    • 1
  • Kunal Vaishya
    Jul, 2013 9

    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.

    • 1
  • VIJAY KUMAR
    Dec, 2020 9

    To get data from table

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS