Data.DB.TBlobField.IsBlob

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class function IsBlob: Boolean; override;

C++

__classmethod virtual bool __fastcall IsBlob();

Properties

Type Visibility Source Unit Parent
function public
Data.DB.pas
Data.DB.hpp
Data.DB TBlobField

Description

Indicates that this is a BLOB field.

Use IsBlob when working with a TField object to determine whether it represents BLOB data. For example, before using the GetData or SetData method (which does not work with BLOB fields), call IsBlob to determine whether the method can be used. The IsBlob method for TBlobField always returns true.

See Also

Code Examples