Data.DBXDBReaders.TDBXDataSetRow.GetStream

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure GetStream(DbxValue: TDBXStreamValue; var Stream: TStream;  var IsNull: LongBool); overload; override;

C++

virtual void __fastcall GetStream(Data::Dbxcommon::TDBXStreamValue* DbxValue, System::Classes::TStream* &Stream, System::LongBool &IsNull)/* overload */;
inline void __fastcall  GetStream(Data::Dbxcommon::TDBXWideStringValue* DbxValue, System::Classes::TStream* &Stream, System::LongBool &IsNull){ Data::Dbxcommon::TDBXRow::GetStream(DbxValue, Stream, IsNull); }
inline void __fastcall  GetStream(Data::Dbxcommon::TDBXAnsiStringValue* DbxValue, System::Classes::TStream* &Stream, System::LongBool &IsNull){ Data::Dbxcommon::TDBXRow::GetStream(DbxValue, Stream, IsNull); }

Properties

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

Description

Updates the Value parameter to the value of a field specified by DbxValue as a TStream.

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

See Also