Data.Win.ADODB.TADOBlobStream.Create

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: constructor
Visibility: public
Source:
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Unit: Data.Win.ADODB
Parent: TADOBlobStream

Delphi

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

C++

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

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