This is the legacy 4D documentation web site. Documentations are progressively being moved to developer.4d.com

Home

 
4D v19.8
dataStore.{dataclassName}

dataStore.{dataclassName} 


 

dataStore.{dataclassName} -> Result 
Parameter Type   Description
Result  DataClass in DataClass object

Each dataclass in the datastore is available as a property of the ds object. The returned object contains a description of the dataclass.

Dataclass objects benefit from specific methods listed in the ORDA - DataClass theme.

Example  

 C_OBJECT($emp;$sel)
 $emp:=ds.Employee //$emp contains the Employee dataclass
 $sel:=$emp.all() //gets an entity selection of all employees
 
  //you could also write directly:
 $sel:=ds.Employee.all()



See also 

ORDA - DataClass

 
PROPERTIES 

Product: 4D
Theme: ORDA - DataStore

 
PAGE CONTENTS 
 
HISTORY 

Created: 4D v17

 
ARTICLE USAGE

4D Language Reference ( 4D v19)
4D Language Reference ( 4D v19.1)
4D Language Reference ( 4D v19.4)
4D Language Reference ( 4D v19.5)
4D Language Reference ( 4D v19.6)
4D Language Reference ( 4D v19.7)
4D Language Reference ( 4D v19.8)