Enum ExecuteSqlResultSet
Namespace: Varigence.Languages.Biml.Task
Assembly: Biml.dll
C#
public enum ExecuteSqlResultSet
Fields
| Fields | Description |
|---|---|
| Full | Specifies that the Execute SQL query will return a dataset with potentially many rows that can be loaded into a variable and read with a data reader. |
| None | Specifies that the Execute SQL query will return no results or that the results should be ignored. |
| SingleRow | Specifies that the Execute SQL query will return a single row whose columns can be mapped to variables. |
| Xml | Specifies that the Execute SQL query will return an XML text result that can be loaded into a variable for further processing. |