SqlResultType Enumeration |
Type of the SQL Query execution
Namespace:
Hummingbird.TestFramework.Automation
Assembly:
Hummingbird.TestFramework.Automation (in Hummingbird.TestFramework.Automation.dll) Version: 1.2.0.0
Syntax [DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")]
public enum SqlResultType
<DataContractAttribute(Namespace := "http://www.hummingbird-alm.com/testframework/201610")>
Public Enumeration SqlResultType
[DataContractAttribute(Namespace = L"http://www.hummingbird-alm.com/testframework/201610")]
public enum class SqlResultType
[<DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")>]
type SqlResultType
Members
| Member name | Value | Description |
---|
| Nothing | 0 |
The SQL Query returns nothing.
|
| ScalarValue | 1 |
The SQL Query returns a scalar value. for example the Identifier of the inserted rows or the number of deleted lines.
If the query returns a data table, this method returns only the first column of the first row.
|
| Query | 2 |
The SQL Query returns a Data table and stored in a String in CSV Format. For example the Select SQL command
|
See Also