OleDbCommand.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.OleDb
Assembly: System.Data (in System.Data.dll)
Return Value
Type: System.ObjectThe first column of the first row in the result set, or a null reference if the result set is empty.
Implements
IDbCommand.ExecuteScalar()| Exception | Condition |
|---|---|
| InvalidOperationException | Cannot execute a command within a transaction context that differs from the context in which the connection was originally enlisted. |
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 that are required to generate the single value using the data returned by an OleDbDataReader.
A typical ExecuteScalar query can be formatted as in the following C# example:
CommandText = "SELECT COUNT(*) FROM region"; Int32 count = (int32) ExecuteScalar();
The following example creates an OleDbCommand and then executes it using ExecuteScalar. The example is passed a string that is an SQL statement that returns an aggregate result, and a string to use to connect to the data source.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.