Getting Started | Documentation | Glish | Learn More | Programming | Contact Us |
Version 1.9 Build 1556 |
|
Package | utility | |
Module | table | |
Tool | table |
desc | in | Description of one or more columns | |
Allowed: | Descriptor | ||
dminfo | in | Optional description data manager to use | |
Allowed: | Record | ||
Default: | F |
t:=table("mytable", readonly=F) dc3:=tablecreatescalarcoldesc('C3', 'a') dc4:=tablecreatescalarcoldesc('C4', as_float(0)) dc5:=tablecreatearraycoldesc('C5', as_double(0), 2, [10,20]) t.addcols(dc3) # T t.addcols(tablecreatedesc(dc4, dc5)) # TA single column can be added as such, but multiple columns have to be combined.