Data.DB.TBinaryField.CopyData

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

procedure CopyData(Source, Dest: TValueBuffer); overload; override;
procedure CopyData(Source, Dest: Pointer); overload; override; deprecated 'Use overloaded method instead';

C++

virtual void __fastcall CopyData(TValueBuffer Source, TValueBuffer Dest)/* overload */;
virtual void __fastcall CopyData _DEPRECATED_ATTRIBUTE1("Use overloaded method instead") (void * Source, void * Dest)/* overload */;

Description

Copies binary data from source to destination.

The CopyData method copies binary data from Source to Dest. The source and the destination are given as Pointers.

See Also