Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is execute scalar?

Answers were Sorted based on User's Feedback



what is execute scalar?..

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

what is execute scalar?..

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

what is execute scalar?..

Answer / anjeswar

It Returns Single Scalar value as a result

Is This Answer Correct ?    18 Yes 5 No

what is execute scalar?..

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

what is execute scalar?..

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

what is execute scalar?..

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

what is execute scalar?..

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

what is execute scalar?..

Answer / usha

This method is used to execute commands that return single
value rather than resultset.

Is This Answer Correct ?    10 Yes 6 No

what is execute scalar?..

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

what is execute scalar?..

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

Post New Answer

More ADO.NET Interview Questions

Is entity framework better than ado.net?

0 Answers  


About ADO and its objects ?

1 Answers   DELL,


What is the current version of entity framework?

0 Answers  


What are the ado.net connection pooling parameters?

0 Answers  


What is the DataTableCollection?

0 Answers  


Which database is the ado.net?

0 Answers  


Which namespaces are used for data access?

0 Answers   SwanSoft Technologies,


What are the essential features of ado.net?

0 Answers  


Explain the ADO . Net Architecture ?

3 Answers  


how you will deal result set? How do you sort a dataset?If a dataset contains 100 rows, how to fetch rows between 5 and 15 only?

0 Answers  


What are the data providers used in ado.net

0 Answers  


What does sqldatareader return?

0 Answers  


Categories