...
Name | Type | Required | Description |
---|---|---|---|
rpad | number | no | If the key value needs to be padded with spaces on the right to make it match the database, this specified specifies the total length of the final padded value. For example rpad = 10 would change a key value from "value" to "value....." (where each . is a space). |
lpad | number | no | If the key value needs to be padded with spaces on the left to make it match the database, this specified specifies the total length of the final padded value. For example lpad = 10 would change a key value from "value" to ".....value" (where each . is a space). |
trim | boolean | no | If a key value needs to be trimmed of spaces before being used setting this to true will cause that to be done. |
maxrows | number | no | Limit the number of rows that will be extracted from the database when generating the data. |
failOnSubstitutionError | boolean | no | If set to If this is set to The default value for this flag if it is not set is |
...