Click or drag to resize

QueryExecutionResult Class

Class to return the results of a query executed as a sql string executed by a driver. A batch executed can result in multiple instances of this class.
Inheritance Hierarchy
SystemObject
  SD.LLBLGen.Pro.DBDriverCoreQueryExecutionResult

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 QueryExecutionResult

The QueryExecutionResult type exposes the following members.

Constructors
  NameDescription
Public methodQueryExecutionResult
Initializes a new instance of the QueryExecutionResult class
Top
Properties
  NameDescription
Public propertyExceptionCaughtDuringExecution
Usually null, but if the execution of the query ran into an exception it's added to this property. All results are void.
Public propertyMessage
The message returned from the query execution, i.e. whether the query executed successfully and how many rows were affected.
Public propertyResultSets
The dataset containing all datatables with resultsets. It contains, ordered by ordinal, the resulting tables. The schema for a datatable in this DataSet can be found in the ResultSetSchemas dataset.
Public propertyResultSetsSchemas
The dataset containing all datatables with the resultset schemas for the datatables in the resultset dataset. The datatable at ordinal X in the ResultSets dataset has as schema the datatable at ordinal X in this DataSet.
Top
Methods
  NameDescription
Public methodAddResultSetSchema
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 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