Example
Put the text "mypassword" in column 3 on all [Data] rows
[Init_Batch_Begin]
Data.Column.Fill 3,mypassword
[Init_Batch_End]
Notice: the above code is equivalent to
[Init_Batch_Begin]
Data.Loop Data.Write 3,mypassword
Data.Endloop
[Init_Batch_End]
To create a number series ("mypassword1", "mypassword2" etc.) on existing rows - use
[Init_Batch_Begin]
SET Counter=1
Data.Loop Data.Write 3,mypassword%Counter%
inc %counter%
Data.Endloop
[Init_Batch_End]