home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a006 / 1.ddi / PASEXAM.ZIP / TBLREN.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1991-03-11  |  292 b   |  19 lines

  1. program TblRen;
  2. uses PXEngine;
  3.  
  4. const OldName = 'OldTbl';
  5.       NewName = 'NewTbl';
  6.  
  7. var   PxErr: Integer;
  8.  
  9. begin
  10.   PX(PXInit);
  11.  
  12.   (* Rename a table *)
  13.   PxErr := PXTblRename(OldName, NewName);
  14.   if PxErr <> PxSuccess then
  15.     Writeln(PxErrMsg(PxErr));
  16.  
  17.   PX(PXExit);
  18. end.
  19.