Progress Code to Apply a Delta DF File

Chris Kelleher

Administrator
Staff member
> Is there a piece of code that I can put in a .p to load a delta.df?

Try this....

def var t-file as char no-undo.
def var t-db as char no-undo.
create alias "dictdb" for database value(t-db).
run prodict/load_df.p (t-file).
 
Top