|
|
|
|
|
- Existence of memory area
- Automatic completion on the name of memory area
- Size of information
MemCreate (Function) In french: MemCreate
Warning
From version 20, this feature is kept for backward compatibility. We recommend that you use Associative arrays.
Creates a memory area. This memory area may contain text or numeric information.
MemCreate("MaZoneMémoire")
sChaîne is string = "A"
sChaîne = Complete(sChaîne, 10000, "B")
Trace(Length(sChaîne))
MemCreate("ZM")
MemAdd("ZM", "1", sChaîne)
sChaîne = MemFirst("ZM")
Trace(Length(sChaîne))
Syntax <Memory area>: Character string Name of the memory area to create (up to 20 characters). This name will be used by all the functions for managing memory areas. Remarks The existence of the memory area is not checked. If the memory area already existed, this memory area is overwritten. To check the existence of a memory area, use MemExist. Automatic completion on the name of memory area In the code editor, after a memory area is manipulated using a Memxxx function (MemCreate, for example), its name will be automatically proposed when you type WLanguage functions that accept the name of the memory area as a parameter. If the size of the information to be stored in the memory area is greater than the available memory space, a "disk swap" is used: one or more temporary files are created to store the surplus information.. These temporary files are created on the local disk, in the directory specified by the "TEMP" environment variable. Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|