Input DATA

estego12

New Member
hi,

I need your help.

I need to know how a program in progress to read a text file separated by ";" and that process the data.
Example for File

"00001";"00002";
"00004";"00008";
ETC.

Thanks Boys
 
The documentation is your friend. You want to lookup INPUT FROM and IMPORT. With IMPORT pay particular attention to the DELIMITER option.

Start -> OpenEdge -> Help

Choose the Index tab and then type in INPUT FROM. After you've read that (don't miss the sample code) lookup IMPORT. Use IMPORT instead of the PROMPT-FOR shown in the first example.

Or skip right to IMPORT -- it has sample code that uses a ";" delimiter ;)
 
Back
Top