Skip to main content
Version: 5.11.2

SetInsert

public TransactionValue SetInsert(string tableName, Param param)

Parameters

ValueTypeDescription
tableNamestringName of the table to read
paramParamParam to insert

Description

The command to insert the table is returned.

Example

List<TransactionValue> transactionValues = new List<TransactionValue>();

Param param = new Param();
param.Add("int", 100);
param.Add("string","Any string");

transactionValues.Add(TransactionValue.SetInsert("tableName", param));