Data.DB.TBlobField.SetVarValue

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: TBlobField

Delphi

procedure SetVarValue(const Value: Variant); override;

C++

virtual void __fastcall SetVarValue(const System::Variant &Value);

Description

Sets the value of the BLOB field with the given Variant value.

SetVarValue sets the value of the BLOB field with the given variant value. If the input variant represents an array, its data is simply copied to the BLOB field; if the input variant represents anything else than an array or a string (ANSI or Unicode), its data is converted to a string (Unicode).

See Also