Click or drag to resize

SqlExecutionResult Class

Class to return the results of sql string with one or more queries.
Inheritance Hierarchy
SystemObject
  SD.LLBLGen.Pro.DBDriverCoreSqlExecutionResult

Namespace:  SD.LLBLGen.Pro.DBDriverCore
Assembly:  SD.LLBLGen.Pro.DBDriverCore (in SD.LLBLGen.Pro.DBDriverCore.dll) Version: 5.8.0.0 (5.8.21.0208)
Syntax
public class SqlExecutionResult

The SqlExecutionResult type exposes the following members.

Constructors
  NameDescription
Public methodSqlExecutionResult
CTor
Top
Properties
  NameDescription
Public propertyExceptionCaughtDuringExecution
Usually null, but if the elements needed to execute the queries threw an exception (e.g. connection open/close/transaction related elements),
Public propertyFlattenedResultsetTables
The flattened resultsets, from all queries together in a dictionary, with as key: "Query A, Resultset B", where A is the query number (starting with 1) and B the resultset number (starting with 1). Is null if FlattenResults hasn't been called.
Public propertyFlattenedSchemaTables
The flattened schema tables, from all queries together in a dictionary, with as key: "Query A, SchemaTable B", where A is the query number (starting with 1) and B the schematable number (starting with 1). Is null if FlattenResults hasn't been called.
Public propertyQueryResults
The results of each query executed in this batch.
Top
Methods
  NameDescription
Public methodAddQueryResult
Adds the specified result of a single query to the results of this object
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodFlattenResults
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also