Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

Code Block
languagejs
$Database.AddData('MySchema', 'MyTable', {
    Id : $Xml.Evaluate('Id'),
    Name : $Xml.Evaluate('Name'),
    State : 'W'
});

Examples

Code Block
languagejs
$Database.AddData('MySchema', 'MyTable', {
    Id : $Xml.Evaluate('Id'),
    Name : $Xml.Evaluate('Name'),
    State : 'W'
});