Click or drag to resize

TDengineStmtAddBatch Method

For INSERT only. add all current bound parameters to batch process. Must be called after each call to StmtBindParam/StmtBindSingleParamBatch, or all columns binds for one or more lines with StmtBindSingleParamBatch. User application can call any bind parameter API again to bind more data lines after calling to this API.

Namespace:  TDengineDriver
Assembly:  TDengineDriver (in TDengineDriver.dll) Version: 1.0.6
Syntax
C#
public static int StmtAddBatch(
	IntPtr stmt
)

Parameters

stmt
Type: SystemIntPtr
could be the value returned by 'StmtInit', that may be a valid object or NULL.

Return Value

Type: Int32
0 for success, non-zero for failure.
See Also