Data.DBXMetaDataReader.TDBXDataTypeDescription.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(const TypeName: string; const DataType: Integer; const ColumnSize: Int64; const CreateFormat: string; const CreateParams: string; const MaxScale: Integer; const MinScale: Integer; const LiteralPrefix: string; const LiteralSuffix: string; const MaxVersion: string; const MinVersion: string; const Flags: Integer); overload;
constructor Create(const Original: TDBXDataTypeDescription); overload;

C++

__fastcall TDBXDataTypeDescription(const System::UnicodeString TypeName, const int DataType, const __int64 ColumnSize, const System::UnicodeString CreateFormat, const System::UnicodeString CreateParams, const int MaxScale, const int MinScale, const System::UnicodeString LiteralPrefix, const System::UnicodeString LiteralSuffix, const System::UnicodeString MaxVersion, const System::UnicodeString MinVersion, const int Flags)/* overload */;
__fastcall TDBXDataTypeDescription(TDBXDataTypeDescription* const Original)/* overload */;

Properties

Type Visibility Source Unit Parent
constructor public
Data.DBXMetaDataReader.pas
Data.DBXMetaDataReader.hpp
Data.DBXMetaDataReader TDBXDataTypeDescription

Description

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

Data.DBXMetaDataReader.TDBXDataTypeDescription.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