Versions Compared

Key

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

Overview

Inserts or updates a row in table by specified column and value as single criteria. Only included columns get updated.

DataRow $Database.EnsureData(schema: string, table: string, column: string, value: any, input: object, initInput: object)

Inserts or updates a row in table by specified column and value as single criteria. Only included columns get updated.

DataRow $Database.EnsureData(store: string, schema: string, table: string, column: string, value: any, input: object, initInput: object)

Arguments

string schema
Name of target schema
string table
Name of target table
string column
Name of column to use as criteria
any value
Value of column to use as criteria
object input
Object or function for column values for updating.
object initInput
Object or function for initialize for new rows. Optional.
string store
name of store

Example

Code Block
languagejs
$Database.EnsureData("MySchema", "MyTable", "Id", id, {
    Id : id,
    Name : $Xml.Evaluate('Name')
}, {
    CreateDate : DateTimeOffset.now
});