Doug Johnson
New Member
Within the Progress language can we ask for the "field list" similar to how you might ask Mysql for a "describe database.tablename" of a database?
Thanks
Thanks
define variable tbl as character no-undo.
assign tbl = "customer".
display tbl label "Table".
find _File no-lock where _File._File-Name = tbl no-error.
for each _Field no-lock where _Field._File-Recid = recid(_File):
display _Field._Field-Name no-error.
end.