Data.Win.ADODB.TADOBlobStream.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(Field: TBlobField; Mode: TBlobStreamMode);

C++

__fastcall TADOBlobStream(Data::Db::TBlobField* Field, Data::Db::TBlobStreamMode Mode);

Properties

Type Visibility Source Unit Parent
constructor public
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Data.Win.ADODB TADOBlobStream

Description

Creates a new TADOBlobStream object.

Call Create to obtain an instance of TADOBlobStream for reading from or writing to a specific BLOB field object.

Create links the TADOBlobStream to the field object specified by the Field parameter. Mode specifies whether the BLOB stream will be used to read data (bmRead), write data (bmWrite) or modify data (bmReadWrite).

See Also