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

« Previous Version 5 Next »

Overview

Appends a new row on specified target table and returns inserted row as object.

DataRow $Database.AddData(schema: string, table: string, input: object)

Adds a new row to the specified target table with the name or ID number of the Target datastore and returns the inserted row as an object.

DataRow $Database.AddData(store: string, schema: string, table: string, input: object)

Arguments

string schema
Name of target schema
string table
Name of target table
object input
Input javascript object.
string store
Name or Id number of target data store. This parameter is optional.

Example

$Database.AddData('MySchema', 'MyTable', {
    Id : $Xml.Evaluate('Id'),
    Name : $Xml.Evaluate('Name'),
    State : 'W'
});
  • No labels