G
gus bjorklund
Guest
The are numerous methods available. Here are some to get you started. 1. when starting the progress session in tty mode, you can specify the name of a 4GL program to be executed. if server for database foo is running, mpro foo -p prog.p if not, pro foo -p prog.p 2. you can load data previously dumped using the binary dump tool by running the binary load tool: proutil foo -C load customer.bd 3. you can load table definitions by creating a small program create.p with the following contents run prodict /load_df.p (".", "customer.df"). to execute: mpro foo -p create.p if you want to create more than one table, you just add more lines to create.p 4. you can write a custom program to load data into any existing table by creating a program that creates records and assigns values to the columns. then execute using the -p argument to the mpro or pro commands.
Continue reading...
Continue reading...