Recent content by Rebin_Kurian

  1. R

    How to import data in Excel file into Progress database table?

    Iam new to progress4GL. I think this code will work for CSV import while we set field1 as primary index in table1 table. DEFINE VARIABLE myRow AS CHAR EXTENT 5 NO-UNDO. INPUT FROM "d:\datafile.csv". REPEAT: IMPORT DELIMITER ',' myrow. FIND FIRST table1 WHERE table1.field1 =...
Top