Skip to content

$Database.GetData

Overview

DataTable $Database.GetData ( [dataStore], schema, table, column, value )

Executes query by specified column and value as single criteria and returns resulting data table instance.

Arguments

String dataStore Name or Id number of target data store. This parameter is optional.

String schema Name of target schema

String table Name of target table

String column Name of column to use as criteria

Object value Value of column to use as criteria

Remarks

Examples

var table = $Database.GetData("MySchema", "MyTable", "Id", $Xml.Evaluate('Id'));

See Also