DALBLTConnection.DALBLTExecuteDelegate Delegate
- Last UpdatedApr 08, 2026
- 1 minute read
The delegate for getting the data after executing a Business Logic Tier (BLT) component.
public delegate void DALBLTConnection.DALBLTExecuteDelegate(
List<DALBLTParam> bltValueList,
int rowsAffected,
DataSet data,
DALBLTExecutionStatus executionStatus,
object clientObj,
string failureReason
)
public delegate void DALBLTConnection.DALBLTExecuteDelegate(
List<DALBLTParam^>^ bltValueList,
int rowsAffected,
DataSet^ data,
DALBLTExecutionStatus executionStatus,
Object^ clientObj,
String^ failureReason
)
Parameters
- bltValueList
- The input/output OASySDNA.Common.DAL.BLTCommon.DALBLTParam list.
- rowsAffected
- The number of rows affected.
- data
- The data returned by the Business Logic Tier (BLT) component. It returns multiple tables instead of multiple records. The table can have multiple columns.
- executionStatus
- The execution status of the Business Logic Tier (BLT) component.
- clientObj
- The reference to the given client object.
- failureReason
- The failure reason received from the driver.