New dbForge Data Generator for SQL Server, v3.9 with a number of improvements!
Posted: Mon 25 Jan 2016 11:50
Devart team is glad to announce the release of dbForge Data Generator for SQL Server v3.9 !
The new version provides the following enhancements:
RegExp generator is improved
Now you can just specify the name of the generator in the editor. You can use the following template: $"generatorName". The data will be automatically generated based on the specified generator.
IronPython generator is improved
Now you can use the internal RegexGenerator class. There are several ways of how you can create one:
"[0-9A-Z]+" is a regular expression
"False" - whether to generate unique values
"30" - max length of the expression
"config["seed"]" - seed value
Check Constraint generator is improved
Miscellaneous improvements
The new version provides the following enhancements:
RegExp generator is improved
Now you can just specify the name of the generator in the editor. You can use the following template: $"generatorName". The data will be automatically generated based on the specified generator.
IronPython generator is improved
Now you can use the internal RegexGenerator class. There are several ways of how you can create one:
- gen = RegexGenerator("[0-9A-Z]+")
- gen = RegexGenerator("[0-9A-Z]+", False, 30)
- gen = RegexGenerator("[0-9A-Z]+", False, 30, config["seed"])
"[0-9A-Z]+" is a regular expression
"False" - whether to generate unique values
"30" - max length of the expression
"config["seed"]" - seed value
Check Constraint generator is improved
Miscellaneous improvements