$Database.AddData
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'
});
Copyright © 2010 - 2023 Emakin. All rights reserved.