Data.DB.TField.IsBlob

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: public
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: TField

Delphi

class function IsBlob: Boolean; virtual;

C++

__classmethod virtual bool __fastcall IsBlob();

Description

Indicates whether the field represents the data in a binary large object (BLOB) field.

Call IsBlob to determine whether the field represents BLOB data. For example, before using the GetData or SetData method, call IsBlob to determine whether the method can be used. The IsBlob method for TField always returns false. Descendants of TField that implement blob fields override this method to indicate that they represent BLOB data.

See Also