On this page
Executes the query, and returns the first column of the first row in the result set returned by the query. Extra columns or rows are ignored.
Syntax
|
|---|
'Declaration
Public Overrides Function ExecuteScalar() As Object |
|
|---|
public override object ExecuteScalar() |
Return Value
The first column of the first row in the result set.
Example
This example shows typical usage of
ExecuteScalar method
|
|---|
using(PgSqlConnection conn = new PgSqlConnection(connectionString)) {
conn.Open();
PgSqlCommand cmd = conn.CreateCommand();
cmd.CommandText = "SELECT count(*) as NumberOfRegions FROM regions";
Int64 count = Convert.ToInt64(cmd.ExecuteScalar());
} |
|
|---|
Dim conn As New PgSqlConnection(connectionString)
conn.Open()
Dim cmd As PgSqlCommand = conn.CreateCommand()
cmd.CommandText = "SELECT count(*) as NumberOfRegions FROM regions"
Dim count As Int64 = Convert.ToInt64(cmd.ExecuteScalar());
conn.Close() |
See Also