SqliteCommand.ExecuteScalar Method

Definition

Executes the CommandText against the database and returns the result.

public override object ExecuteScalar ();
public override object? ExecuteScalar ();
override this.ExecuteScalar : unit -> obj
Public Overrides Function ExecuteScalar () As Object

Returns

The first column of the first row of the results, or null if no results.

Exceptions

A SQLite error occurs during execution.

Applies to