Skip to main content
Version: 10.1

$.udb(ds).meta()

note

This article is about the meta() function of the DataSourceContainer object.

$.udb(ds).meta()

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

note

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

Syntax

$.udb( *ds* ).meta()

The optional ds is a data source selector.

Example

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

This is equivalent to:

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