Versions Compared

Key

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

Overview

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

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

...

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'
});

...

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