.meta()

Previous Next

Returns the meta data container of the first data source in the container.

An alternative way of accessing metadata is offered by the udbMeta() function object.

Syntax

.meta()

Example

var ds = $.udb("EMP");

var dsMeta = ds.meta();

 

This is equivalent to:

var ds = $.udb("EMP");

var dsMeta = $.udbMeta(ds);