Importing

TColeman

Member
I am working on a Windows NT platform using Progress 9.0.

Using the Database Administration tool I am trying to import comma delimited text (from a .txt file) into a database table (for GUI testing purposes). But it never imports anything. Is there a known bug or a trick I am missing?

Thanks for any help.

Terri
 

erick.rosales

New Member
Why don't you try to develop a procedure to do this?

Sometimes is better... And if it comma separated is very easy.

input from value(c-file).
repeat:
create t-record.
import delimiter ","
t-record.field1
t-record.field2
t-record.field3.

display
t-record
with frame f-load.
puase 0.
end.
input close.
 
Top