Statistics
The Highest Post







Statistics
Count 98
Avg 20.27
Min 3
Max 21

Details



Peter Agyekum What is the difference between ExecuteScalar and ExecuteNonQuery? ExecuteScalar returns output value where as ExecuteNonQuery does not return any value but the number of rows affected by the query. ExecuteScalar used for fetching a single value and ExecuteNonQuery used to execute Insert and Update statements.
Related Topics