Data.DB.TBlobField.SetData

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

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

C++

HIDESBASE void __fastcall SetData(TValueBuffer Buffer, int Len)/* overload */;
inline void __fastcall  SetData(TValueBuffer 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); }

Description

Assigns unformatted data to the BLOB field.

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

See Also