what are the different cases when we use these three.where should I use one and where should not?
|
|||
|
|
|
Each one is a different type execution.
|
|||||
|
|
To add to what others posted: ExecuteScalar conceptually returns the leftmost column from the first row of the resultset from the query; you could ExecuteScalar a SELECT * FROM staff, but you'd only get the first cell of the resulting rows Typically used for queries that return a single value. I'm not 100% sure about SQLServer but in Oracle, you wouldnt use it to run a FUNCTION (a database code that returns a single value) and expect it to give you the return value of the function even though functions return single values.. However, if youre running the function as part of a query, e.g. SELECT SUBSTR('abc', 1, 1) FROM DUAL then it would give the return value by virtue of the fact that the return value is stored in the top leftmost cell of the resulting rowset ExecuteNonQuery would be used to run database stored procedures, functions and queries that modify data (INSERT/UPDATE/DELETE) or modify database structure (CREATE TABLE...). Typically the return value of the call is an indication of how many rows were affected by the operation but check the DB documentation to guarantee this |
|||
|
|
|
From the docs (note: MSDN is a handy resource when you want to know what things do!):
... and from SqlDataReader ...
|
|||
|
|
|
ExecuteNonQuery():
ExecuteReader():
ExecuteScalar():
Reference URL: http://nareshkamuni.blogspot.in/2012/05/what-is-difference-between.html |
||||
|
|