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
Sisulizer version 4 is a paid update recommended for all Sisulizer customers.
Still using Sisulizer 3 or Sisulizer 1.x/2008/2010?
Time to update to version 4 now and profit from all new features in version 4.
Version 4 Build 374 released
11/30/2018
The new build comes with many new features. [...]
Tutorials
3/5/2019
Tutorials updated [...]
.NET Support updated
6/14/2018
New in May 2018: [...]
Sisulizer 4 Build 366
3/1/2017
Build 366 - support for Visual Studio 2017 [...]
10 Years Sisulizer
8/5/2016
Celebrate and save Big. [...]
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
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.