Consultor Eletrônico



Kbase 18277: How to export import TAB delimited data
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   10/20/1999
How to export import TAB delimited data

INTRODUCTION:
=============

Customers have asked how to use tab as a delimiter for the export and
import statements.
This kbase shows how to do it.

PROCEDURAL APPROACH:
====================

You can refer to the TAB character with a escape character expression.
The TAB character is represented: ~011.


Example 1:

OUTPUT TO file.txt.
FOR EACH customer:
EXPORT DELIMITER "~011" customer.
END.
OUTPUT CLOSE.


Example 2:
INPUT FROM file.txt.
REPEAT:
CREATE customer.
IMPORT DELIMITER "~011" customer.
END.
INPUT CLOSE.


REFERENCES TO WRITTEN DOCUMENTATION:
====================================

Progress Language Reference, Volumen 1: Special Characters and
Punctuation.


EAG 09/29/98