FireDAC.Phys.SQLiteWrapper.TSQLiteBLOB.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(ADB: TSQLiteDatabase; const ADBAlias, ATable, AColumn: String;
ARowID: sqlite3_int64; AReadWrite: Boolean); overload;

C++

__fastcall TSQLiteBLOB(TSQLiteDatabase* ADB, const System::UnicodeString ADBAlias, const System::UnicodeString ATable, const System::UnicodeString AColumn, __int64 ARowID, bool AReadWrite)/* overload */;
/* TSQLiteHandle.CreateUsingHandle */ inline __fastcall TSQLiteBLOB(void * AHandle) : TSQLiteHandle(AHandle) { }

Properties

Type Visibility Source Unit Parent
constructor public
FireDAC.Phys.SQLiteWrapper.pas
FireDAC.Phys.SQLiteWrapper.hpp
FireDAC.Phys.SQLiteWrapper TSQLiteBLOB

Description


Constructs an object and initializes its data before the object is first used.

FireDAC.Phys.SQLiteWrapper.TSQLiteBLOB.Create inherits from System.TObject.Create. All content below this line refers to System.TObject.Create.

Constructs an object and initializes its data before the object is first used.

Create constructs an object. The purpose, size, and behavior of objects differ greatly. The Create constructor defined by TObject allocates memory but does not initialize data.

Descendant objects usually define a constructor that creates the particular kind of object and initializes its data.

Note: If an exception escapes from a constructor, the object's destructor is called to clean up the failed instance.

See Also