Data.DBXDBReaders.TDBXDataSetRow.GetWideString

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure GetWideString(DbxValue: TDBXWideStringValue;  var WideStringBuilder: TDBXWideStringBuilder; var IsNull: LongBool); override;

C++

virtual void __fastcall GetWideString(Data::Dbxcommon::TDBXWideStringValue* DbxValue, System::WideChar * &WideStringBuilder, System::LongBool &IsNull)/* overload */;
inline void __fastcall  GetWideString(Data::Dbxcommon::TDBXWideStringValue* DbxValue, System::UnicodeString &Value, System::LongBool &IsNull){ Data::Dbxcommon::TDBXRow::GetWideString(DbxValue, Value, IsNull); }

Properties

Type Visibility Source Unit Parent
procedure
function
public
Data.DBXDBReaders.pas
Data.DBXDBReaders.hpp
Data.DBXDBReaders TDBXDataSetRow

Description

Updates the WideStringBuilder parameter to the value of a field specified by DbxValue as a PWideChar.

If no value is assigned to the specified field, the IsNull parameter is set to True.

See Also