Skip to main content
Version: 10.1

ColsMeta.isUpdatable()

note

This article is about the isUpdatable() function of the ColsMeta object.

ColsMeta.isUpdatable()

Finds out if this column may be updated.

Returns either a boolean or a string. Returns true if the column may be updated, false if it may not be updated, and 'isNull' if it may only be updated if NULL.

Syntax

$.udbMeta( *ds* ).cols( *cols* ).isUpdatable()

The optional ds is a data source selector. The optional cols is a column selector.

Example

var updatable = $.udbMeta('EMP').cols('ADDRESS').isUpdatable();