beschuitfluiter
New Member
i'm from holland, trying to learn stuff about our new progress version 10.1b


Nog bedankt voor de vlugge hulp van morgen hèlol! beschuitfluiter :lol:
Now that are real tricks :awink:
welcome
i'm from holland, trying to learn stuff about our new progress version 10.1b
![]()
wow 6.3, that's old ;-)
Migrating to.....?
They didn't consider upgrading Progress? In most cases it's just a simple recompile. That would make your work much easier. SQL and Progress 6.3 isn't a very good combination.....
Now working on: procedure to dump some table-data into something csv/xml like thingie to have it parsable.
&scoped-define TABLE-NAME <nameofyourtable>
output to <pathtooutputdir>/<filename>.
for each {&TABLE-NAME}:
export delimiter ';' {&TABLE-NAME}.
end.
output close.
CSV is the easiest:
Code:&scoped-define TABLE-NAME <nameofyourtable> output to <pathtooutputdir>/<filename>. for each {&TABLE-NAME}: export delimiter ';' {&TABLE-NAME}. end. output close.
Casper.