Data.Cloud.AmazonAPI.TAmazonRowConditional.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class function Create(const ColumnName, ColumnValue: string;  const ColumnExists: Boolean = True): TAmazonRowConditional; static;

C++

static TAmazonRowConditional __fastcall Create(const System::UnicodeString ColumnName, const System::UnicodeString ColumnValue, const bool ColumnExists = true);

Properties

Type Visibility Source Unit Parent
function public
Data.Cloud.AmazonAPI.pas
Data.Cloud.AmazonAPI.hpp
Data.Cloud.AmazonAPI TAmazonRowConditional

Description

Creates a new instance of TAmazonRowConditional.

Create returns a new instance of TAmazonRowConditional, based on the given parameters.

If ColumnExists is set to True, the ColumnValue is checked.

The following table shows the significance of the parameters:

Parameter Description

ColumnName

The name of the column to check.

ColumnValue

The value of the column to expect and check against.

ColumnExists

Set to True or False to check whether the column exists or not, respectively.

See Also