Ident |
Beschreibung |
Beispiel |
ExpProgressBar |
Switch (0/1): Bestimmt ob während dem Export ein Fortschrittsbalken angezeigt wird. |
1 |
ExpTempExtension |
Bestimmt den temporären Dateityp der während des Exports verwendet wird. |
.tmp |
Die InitID die bei der Plugin-Registrierung eingetragen wird, bestimmt die Sektion der Exportdefinition.
Der Sektionsname beginnt mit einem EXPDEF_ gefolgt von der InitID
Sind bei der selben InitID mehrere hintereinander ablaufende Exportdefinitionen erwünscht, können diese folgendermaßen angegeben werden:
[EXPDEF_1]
[EXPDEF_1_1]
[EXPDEF_1_2]
OUTPUT filename DELIMITER ';'
QUOTECHAR '"'
DATEFORMAT 'dd.mm.yyyy'
TIMEFORMAT 'hh:nn'
NULLS
FIELDNAMES
ENCODING 'utf-8';
SELECT XY from XY;
Beschreibung der OUTPUT Parameter:
filename |
Name of the file in which to save output. - Relative Angaben beziehen sich immer auf die ausführende use.exe z.B: .\export\test.csv - Im Filenamen können folgende Platzhalter verwendet werden: %TS% (Timestamp), %PP1%,%PP2%,%PP3% (*1000) |
DELIMITER |
Determines a delimiter character which is used for separating field values. If the argument is not specified, it takes ';' |
QUOTECHAR |
Defines the character which will be used for quoting string values. If the argument is not specified, it do not quote strings. |
DATEFORMAT |
Defines the string which will be used for formatting values of date fields and the date part of datetime values. If the argument is not specified, it takes the local ShortDateFormat. |
TIMEFORMAT |
Defines the string which will be used for formatting the values of time fields and the time slice of datetime values. If the argument is not specified, it takes the local ShortTimeFormat. |
DATETIMESEPARATOR |
Defines the seperator character which is used for separating date and time |
DECIMALSEPARATOR |
Defines the decimal separator. If the argument is not specified, it takes the local DecimalSeperator. |
NULLS |
Defines how NULL values will be output. If the argument is not specified, NULLs are output as an empty string. Otherwise NULLs will be output as the string <null> |
FIELDNAMES |
If this argument is specified, the first line in the resulting file will be a line with names of SELECT columns. |
MEMOLINEFEED |
Defines if Linefeeds (CHR$13) in Memos are exported as is. Otherwise it replaces wit a space |
MEMOTAB |
Defines if Tab(CHR$9) in Memos are exported as is. Otherwise it replaces wit a space |
ENCODING |
Defines the Encoding such as 'utf-8' or 'iso-8859-1' If the argument is not specified, it takes 'utf-8' For a list of supported Names see http://msdn.microsoft.com/de-de/library/dd317756%28v=vs.85%29.aspx |