Data.DB.TBlobField.SetData

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SetData(Buffer: TValueBuffer; Len: Integer); overload;

C++

HIDESBASE void __fastcall SetData(System::DynamicArray<System::Byte> Buffer, int Len)/* overload */;
inline void __fastcall  SetData(System::DynamicArray<System::Byte> Buffer, bool NativeFormat = true){ TField::SetData(Buffer, NativeFormat); }
inline void __fastcall  SetData _DEPRECATED_ATTRIBUTE1("Use overloaded method instead") (void * Buffer, bool NativeFormat = true){ TField::SetData(Buffer, NativeFormat); }

Properties

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

Description

Assigns unformatted data to the BLOB field.

SetData writes the contents of the input buffer to the BLOB field.

See Also