Repeaters persistence

Persistence configuration is required in order to reuse existing repeaters during data masking. Repeaters are loaded from and saved to the defined database.

During Ekobit.BizDataX.Databases.MSSQL database handler installation the <ekobit.bizdatax.database.mssql> section will be added in App.config file:

<ekobit.bizdatax.database.mssql>  
<!--control repeating persistence  
need to add connection string with value of name 'connectionStringName' into connectionStrings section-->  
<repeatingpersistence persistenceonthefly="false" connectionstringname="PersistenceMsSql" schemaname="dbo" tableprefix="REPEATER_"></repeatingpersistence>  
</ekobit.bizdatax.database.mssql>

The connection string of the same name must be added to the <connectionstrings>.

  • persistenceOnTheFly - controls whether repeater persistence on the fly option is enabled (true or false)

  • connectionStringName - the name of the connection string that indicates where repeater values will be saved

  • schemaName - the name of the database schema where repeater values will be saved

  • tablePrefix - the table prefix for repeater tables

</ekobit.bizdatax.database.mssql>