Updaten Sie auf Version 3

Sisulizer Version 3 ist ein kostenpflichtiges Update für alle Sisulizer 1.x und 2008/2010-Kunden.

Verwenden Sie noch Sisulizer 1.x oder Sisulizer 2008/2010?

Aktualisieren Sie jetzt auf Version 3 und nutzen Sie alle Neuigkeiten in Version 3.

Angebot gültig bis 20.5.2012

Die Angebote richten sich an kommerzielle und industrielle Kunden.
Alle Preisangaben sind netto.

Komplette Preisliste.

Suchen Sie die richtige Edition? Besuchen Sie unsere Vergleichstabelle

Bitte stimmen Sie für Sisulizer

Bitte klicken Sie diese Facebook-Schaltfläche, um diese Seite mit Ihren Freunden zu teilen

Share

(english) (german)


Drücken Sie bitte die Google +1-

Schaltfläche, um Sisulizer eine positive Bewertung in Googles neuem Bewertungssystem zu geben.

Vielen Dank.

Ausgewählte Kunden

Softwarelokalisierungs-News

Version 3 Build 331 veröffentlicht

23.4.2012

Der neue Build kommt mit vielen neuen Features. [mehr]

Top News: Version 3

9.11.2011

Sisulizer Version 3 ist da. [mehr]

Tipps & Tricks

30.9.2011

Sie suchen nach Tipps und Trick zum Thema Sisulizer? [mehr]

Delphi Tage

8.9.2011

Die Delphi Tage 2011 in Köln sind ausverkauft! [mehr]

Build 321 herunterladen

12.8.2011

Bitte verwenden Sie einen Download Manager. [mehr]

Table Properties

Use this dialog to configure how database table is localized.

New primary id

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.

Settings

Specifies the table specific settings. Check Use table specific settings to use table specific setting. If unchecked source specific settings are used.

When building incomplete database rows

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.