Class ResultSet
ResultSet scope item
Inheritance
System.Object
ResultSet
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: SqlDotNet.Runtime
Assembly: SqlDotNet.dll
Syntax
public class ResultSet
Constructors
| Improve this Doc View SourceResultSet(String)
Create ResultSet
Declaration
public ResultSet(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | Unique result set name |
Properties
| Improve this Doc View SourceCursors
List of cursors which fills this result set, currently only one supported
Declaration
public IList<string> Cursors { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.String> |
Definition
Result-Set definition
Declaration
public IDictionary<string, DataType> Definition { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, DataType> |
Name
Get variable name
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
Rows
Declaration
public IList<QueryResultRow> Rows { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<QueryResultRow> |