SqliteCommand.ExecuteScalar Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.