Executes a SQL SELECT statement and returns a single value.
Visual Basic Public Overrides Function ExecuteScalar() As Object
C# public override object ExecuteScalar();
The first column of the first row in the result set, or a null reference (Nothing in Visual Basic) if the result set is empty.
The statement is the current ULCommand object, with the ULCommand.CommandText and any ULCommand.Parameters as required.
If this method is called on a query that returns multiple rows and columns, only the first column of the first row is returned.
If the ULCommand.CommandType is System.Data.CommandType.TableDirect, ExecuteScalar performs an ULCommand.ExecuteTable() and returns the first column of the first row.
It is recommended that SELECT statements used with this method to create read-only result sets end with FOR READ ONLY. For some statements that use temporary tables, there may be a significant performance improvement.
Send feedback about this page via email or DocCommentXchange | Copyright © 2008, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.0 |