Product Home
DTM Data Generation SDK Online Documentation
Product Profile
SDK components
Functions map
Low level API
Short Random
Integer Random
Random Symbol
Double Random
Random String
Random Date
Random Time
C/C++ example
Fill Methods level API
From list
From file
From table
From Values Library
Incremental
By maks
By SQL statement
Rule level API
Rule properties
Rule items
One rule item
Project level API
Project operations
Project properties
Project rules
Object handles
Database connection
Error handling
SDK limitations
Build application with SDK
License agreement

Incremental fill method

Incremental method Initialization
C/C++/C#
DG_HANDLE InitIncremental(int Start, int Step, int UseEach, int CycleLength)
'Start' is a first value of the sequence.
'Step' will be added at each iteration.
'UseEach' means how many times generated value will be used before add 'Step' value.
'CycleLength' defines after what number of iterations current value will be reinitialized by 'Start' value. 0 means no cycle.

Generate value
C/C++
char* IncrementalValue(DG_HANDLE handle)

C#/VBA/scripts
string IncrementalValue(int handle)