Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

OdbcCommand::ExecuteScalar Method ()

 

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.

Namespace:   System.Data.Odbc
Assembly:  System.Data (in System.Data.dll)

public:
virtual Object^ ExecuteScalar() override

Return Value

Type: System::Object^

The first column of the first row in the result set, or a null reference if the result set is empty.

Use the ExecuteScalar method to retrieve a single value (for example, an aggregate value) from a data source. This requires less code than using the ExecuteReader method, and then performing the operations required to generate the single value from the data returned by an OdbcDataReader.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft