ADO.NET ExecuteReader in SqlCommand Object
The ExecuteReader() method in the SqlCommand Object sends the SQL statements to the Connection Object and populates a SqlDataReader Object based on the SQL statement provided. When the ExecuteReader() method is executed, it instantiates a SqlDataReader Object from the System.Data.SqlClient namespace.
SqlDataReader Object
The SqlDataReader Object is a stream-based, forward-only, read-only mechanism for retrieving query results from the data source. It provides a way to efficiently read and navigate through the result set returned by the SQL statement. The SqlDataReader Object is designed for retrieving data and does not support updating or modifying the data in the data source.
It is important to note that you cannot directly create an instance of the SqlDataReader Object in your code. Instead, it is created by calling the ExecuteReader() method of a Command Object, such as the SqlCommand Object. The ExecuteReader() method initiates the execution of the SQL statement, and once executed, it returns a SqlDataReader Object that you can use to read the retrieved data row by row.
Full Source VB.NETsql = "Your SQL Statement Here , like Select * from product"
You have to replace the string with your realtime variables.
- ADO.NET Connection Object
- ADO.NET SQL Server Connection
- ADO.NET OLEDB Connection
- ADO.NET ODBC Connection
- ADO.NET Command
- ADO.NET ExecuteNonQuery in SqlCommand Object
- ADO.NET ExecuteNonQuery in OleDbCommand Object
- ADO.NET ExecuteScalar in SqlCommand Object
- ADO.NET ExecuteScalar in OleDbCommand Object
- ADO.NET ExecuteReader in OleDbCommand Object
- How to ADO.NET DataReader
- How to ADO.NET SqlDataReader
- How to ADO.NET OleDbDataReader
- How to Multiple Result Sets in ADO.NET
- Getting Schema Informations from SqlDataReader
- Getting Schema Informations from OleDbDataReader
- What is DataAdapter
- What is SqlDataAdapter
- What is OleDbDataAdapter
- Vb.NET ExecuteReader and ExecuteNonQuery