home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 5
/
05.iso
/
a
/
a006
/
1.ddi
/
PASEXAM.ZIP
/
TBLCOPY.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1991-03-11
|
316 b
|
19 lines
program TblCopy;
uses PXEngine;
const SourceTable = 'Table1';
DestTable = 'Table2';
var PxErr: Integer;
begin
PX(PXInit);
(* Copy one table to another *)
PxErr := PXTblCopy(SourceTable, DestTable);
if PxErr <> PxSuccess then
Writeln(PXErrMsg(PxErr));
PX(PXExit);
end.