what is execute scalar?
Answers were Sorted based on User's Feedback
Answer / thirushakar
Scalar will return only one value.
(ie we can read or write only one data at the time)
| Is This Answer Correct ? | 33 Yes | 11 No |
Answer / versha
When we want any aggreagate answer then we use execute
scaler examples like avg,sum etc
this return one row and one column
| Is This Answer Correct ? | 24 Yes | 2 No |
Answer / muthu kumar
when we want to retrieve data that has single value then we
can prefer to execute scalar.
| Is This Answer Correct ? | 13 Yes | 4 No |
Answer / prabhat saxena
execute scalar return a object type value, by defalut it
will return first row of fst column value, mostly we used
it with aggregate function like sum(),max(),min(),avg()....
| Is This Answer Correct ? | 13 Yes | 4 No |
Answer / tonny
Executes the query, and returns the first column of the
first row in the result set returned by the query.
Additional columns or rows are ignored.
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / yograj pandey
Use the ExecuteScalar method to retrieve a single value (for example, an aggregate value) from a database. This requires less code than using the ExecuteReader method, and then performing the operations that you need to generate the single value using the data returned by a SqlDataReader.
A typical ExecuteScalar query can be formatted as in the following C# example:
cmd.CommandText = "SELECT COUNT(*) FROM dbo.region";
Int32 count = (Int32) cmd.ExecuteScalar();
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / usha
This method is used to execute commands that return single
value rather than resultset.
| Is This Answer Correct ? | 10 Yes | 6 No |
Answer / adsd
scalar will returns single value.scalar eg like avg,sum etc
it vl return oly one column as output
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / vivek kumar
execute scalar method return only one value that means you
can use this with max, min, sum function
| Is This Answer Correct ? | 3 Yes | 1 No |
Explain the various objects in dataset.
List all the steps in order, to access a database through ado.net?
i want 2 pass values(enterd in textbox)to table in sql server without using stored procedure in c#.plz tell me code with an example.
What is DataRowCollection?
What is ado full form?
How to sort the data in Datatable
Explain About ado.net components/objects. Usage of data adapters and tell the steps to retrieve data.
What DataReader class do in ADO.NET ?
what is Execute NOn Query?
29 Answers Infosys, Protech, Sars Systems, SwanSoft Technologies,
What is the default Timeout for SqlCommand.CommandTimeout property?
WHAT Are the major major compnents of a data provider in ADO.net.
What are the different methods available under the sqlcommand class to access the data?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)