Vb.NET ExecuteReader and ExecuteNonQuery
ExecuteReader
The ExecuteReader method is used to retrieve query results as a DataReader object. The DataReader provides a forward-only, read-only stream of records retrieved from the database. It is optimized for efficient retrieval of data and is particularly useful when you need to sequentially read through a large set of records.
When the ExecuteReader method is invoked, it executes a SELECT command against the database and retrieves the result set. The DataReader allows you to iterate over the records in the result set one by one, starting from the first record and moving forward until the last record is reached.
The DataReader provides methods such as Read(), which advances to the next record in the result set, allowing you to access the data in a sequential manner. Each record can be accessed using the DataReader's various getter methods, such as GetString(), GetInt32(), or GetDateTime(), depending on the data type of the column.
ExecuteNonQuery
The ExecuteNonQuery method is used to execute SQL statements that do not return any data. It is commonly used to perform operations such as updating, inserting, or deleting data in a database.
When you invoke the ExecuteNonQuery method, it executes the provided SQL statement against the database and performs the specified operation. This can include updating existing records, inserting new records, deleting records, or any other SQL operation that does not involve retrieving data.
After executing the command, the ExecuteNonQuery method returns the number of rows affected by the operation. This value indicates the number of records that were modified, inserted, or deleted as a result of the SQL statement execution.
Conclusion
The ExecuteNonQuery method is used to execute SQL statements that do not return data, such as update, insert, or delete statements. It returns the number of rows affected by the operation, allowing you to assess the success and impact of the executed command.
- 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 SqlCommand 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