4D v14.3

COPY ARRAY

Home

 
4D v14.3
COPY ARRAY

COPY ARRAY 


 

COPY ARRAY ( source ; destination ) 
Parameter Type   Description
source  Array in Array from which to copy
destination  Array in Array to which to copy

The COPY ARRAY command creates or overwrites the destination array destination with the exact contents, size, and type of the source array source.

The source and destination arrays can be local, process, or interprocess arrays. When copying arrays, the scope of the array does not matter.

Example  

The following example fills the array named C. It then creates a new array, named D, of the same size as C and with the same contents:

 ALL RECORDS([People]` Select all records in People
 SELECTION TO ARRAY([People]Company;C) ` Move company field data into array C
 COPY ARRAY(C;D) ` Copy the array C to the array D

 
PROPERTIES 

Product: 4D
Theme: Arrays
Number: 226

 
HISTORY 

Created: < 4D v6

 
ARTICLE USAGE

4D Language Reference ( 4D v11 SQL Release 6)
4D Language Reference ( 4D v12.4)
4D Language Reference ( 4D v14 R2)
4D Language Reference ( 4D v14 R3)
4D Language Reference ( 4D v13.5)
4D Language Reference ( 4D v14.3)
4D Language Reference ( 4D v14 R4)