Database updates

peterp1972

New Member
Hello All,
Is there any way to load a definitions file to an existing Progress DB without Data Administration or developement?
 
Sure:
Code:
DEF VAR xOK AS LOGI NO-UNDO.
lpError:
DO ON STOP UNDO, LEAVE lpError:
  DO ON ERROR UNDO, LEAVE lpError:
    RUN prodict/load_df.p("C:\sports.df").

    xOK = YES.
  END.
END.
IF NOT xOK THEN
  MESSAGE "Failed to load new DF." VIEW-AS ALERT-BOX.

Bradley Worrell-Smith
http://www.stompfest.com
 
Back
Top