Data.DBXCommon.TDBXReaderByteReader.GetWideString
[–] Properties | |
---|---|
Type: procedure function
| |
Visibility: public | |
Source: Data.DBXCommon.pas Data.DBXCommon.hpp
| |
Unit: Data.DBXCommon | |
Parent: TDBXReaderByteReader |
Delphi
procedure GetWideString(Ordinal: TInt32; const Value: TArray<Byte>; Offset: TInt32; var IsNull: LongBool); override;
C++
virtual void __fastcall GetWideString(Data::Dbxplatform::TInt32 Ordinal, const System::DynamicArray<System::Byte> Value, Data::Dbxplatform::TInt32 Offset, System::LongBool &IsNull);
Description
Retrieves a WideString from a reader and puts it into an array.
GetWideString inserts the WideString value into the TArray<Byte> that is passed as the second parameter of the function. If the value is null, the IsNull parameter will be set to True
instead.