Sisulizer version 3 is a paid update recommended for all Sisulizer customers.
Still using Sisulizer 1.x or Sisulizer 2008/2010?
Time to update to version 3 now and profit from all new features in version 3.
Offers are for commercial and industrial customers only.
All prices are net.
Complete Price Sheet.
Not sure which edition is the right one? Visit our Edition Comparison
to reach international customers with software in their language
to localize their in-house software in the international subsidiaries
to build multilingual custom software for their clients' enterprises
as Localization Service Providers because it is the localization tool of their customers
to localize software at Government Agencies
To teach software localization at Universities
for software localization on Electronic Devices
To translate software for Biomedical Hardware
to localize software in the Mining Industry
to create multilingual software for Mechanical Engineering
4/24/2013
The new build comes with many new features. [...]
9/25/2012
Android app for Sisulizer customers available. [...]
9/3/2012
Ready for the future. [...]
8/13/2012
Delphi Tage 2012 in Heidelberg. [...]
11/9/2011
Sisulizer version 3 out now. [...]
The German and French Online-Help pages have been created with the help of machine translation. In doubt please read the English original.
Use this dialog to configure how database table is localized.
Specifies how to generate the primary ids for the localized rows that Sisulizer adds to table. Possible options are:
| Value | Description |
|---|---|
| Next available value above this value | Enter the minimum value of the primary id. If you want to use some reserved pool for generated row enter a value that specified the start id of that pool. |
| Use stored procedure to get the value |
Select a stored procedure name that Sisulizer calls when it needs a new id. This option is available only if the database support stored procedure and there are at least one stored procedure defined. The stored procedure must not take any parameters and it must return one row where the first field contains the row id. For example the following stored procedure returns the next available row id. CREATE PROCEDURE GetNewId RETURNS (rowId INTEGER) AS BEGIN SELECT MAX(RowId) + 1 FROM Country INTO :rowId; END; |
| Use following SQL statement to get the value |
Write SQL statement that Sisulizer calls when it needs a new id. SQL statement must return one row where the first field contains the row id. For example he following SQL returns the next available row id: SELECT MAX(RowId) + 1 FROM Country |
If the primary id field is an auto increment field this group is disabled because database will assing a new id for each row.
Specifies the table specific settings. Check Use table specific settings to use table specific setting. If unchecked source specific settings are used.
Specifies how incomplete row should be handled during the build process. Possible options are:
| Value | Description |
|---|---|
| Use original string | Use the original value in the field. |
| Use empty string | Write the empty string to the field. |
| Skip row | Skip the row and does not write anything. |
This option is not enabled if database cloning used.