Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Overview

Saves changes on data table.

DataTable DataTable.Save()

Example

Scan all rows
var table = $Database.Get({
    Parameters : {
        TargetSchema : 'HR',
        TargetTable : 'Groups'
    }
});

table.Each(function () {
    this.Name = 'MyAdmin';
});

table.Save();

Examples

Scan all rows
var table = $Database.Get({
    Parameters : {
        TargetSchema : 'HR',
        TargetTable : 'Groups'
    }
});

table.Each(function () {
    this.Name = 'MyAdmin';
});

table.Save();
  • No labels