API:FireDAC.Phys.Infx.EInfxNativeException.Create
| [–] Properties | |
|---|---|
| Type: constructor | |
| Visibility: public | |
| Source: FireDAC.Phys.Infx.pas FireDAC.Phys.Infx.hpp
| |
| Unit: FireDAC.Phys.Infx | |
| Parent: EInfxNativeException | |
Delphi
constructor Create(AStatus: SQLReturn; AOwner: TODBCHandle); override;
C++
__fastcall virtual EInfxNativeException(Firedac::Phys::Odbccli::SQLReturn AStatus, Firedac::Phys::Odbcwrapper::TODBCHandle* AOwner)/* overload */;
/* EFDDBEngineException.Create */ inline __fastcall virtual EInfxNativeException()/* overload */ : Firedac::Phys::Odbcwrapper::EODBCNativeException() { }
/* EFDDBEngineException.Create */ inline __fastcall EInfxNativeException(int AADCode, const System::UnicodeString AMessage)/* overload */ : Firedac::Phys::Odbcwrapper::EODBCNativeException(AADCode, AMessage) { }
/* Exception.CreateFmt */ inline __fastcall EInfxNativeException(const System::UnicodeString Msg, const System::TVarRec *Args, const System::NativeInt Args_High) : Firedac::Phys::Odbcwrapper::EODBCNativeException(Msg, Args, Args_High) { }
/* Exception.CreateRes */ inline __fastcall EInfxNativeException(System::NativeUInt Ident)/* overload */ : Firedac::Phys::Odbcwrapper::EODBCNativeException(Ident) { }
/* Exception.CreateRes */ inline __fastcall EInfxNativeException(System::PResStringRec ResStringRec)/* overload */ : Firedac::Phys::Odbcwrapper::EODBCNativeException(ResStringRec) { }
/* Exception.CreateResFmt */ inline __fastcall EInfxNativeException(System::NativeUInt Ident, const System::TVarRec *Args, const System::NativeInt Args_High)/* overload */ : Firedac::Phys::Odbcwrapper::EODBCNativeException(Ident, Args, Args_High) { }
/* Exception.CreateResFmt */ inline __fastcall EInfxNativeException(System::PResStringRec ResStringRec, const System::TVarRec *Args, const System::NativeInt Args_High)/* overload */ : Firedac::Phys::Odbcwrapper::EODBCNativeException(ResStringRec, Args, Args_High) { }
/* Exception.CreateHelp */ inline __fastcall EInfxNativeException(const System::UnicodeString Msg, int AHelpContext) : Firedac::Phys::Odbcwrapper::EODBCNativeException(Msg, AHelpContext) { }
/* Exception.CreateFmtHelp */ inline __fastcall EInfxNativeException(const System::UnicodeString Msg, const System::TVarRec *Args, const System::NativeInt Args_High, int AHelpContext) : Firedac::Phys::Odbcwrapper::EODBCNativeException(Msg, Args, Args_High, AHelpContext) { }
/* Exception.CreateResHelp */ inline __fastcall EInfxNativeException(System::NativeUInt Ident, int AHelpContext)/* overload */ : Firedac::Phys::Odbcwrapper::EODBCNativeException(Ident, AHelpContext) { }
/* Exception.CreateResHelp */ inline __fastcall EInfxNativeException(System::PResStringRec ResStringRec, int AHelpContext)/* overload */ : Firedac::Phys::Odbcwrapper::EODBCNativeException(ResStringRec, AHelpContext) { }
/* Exception.CreateResFmtHelp */ inline __fastcall EInfxNativeException(System::PResStringRec ResStringRec, const System::TVarRec *Args, const System::NativeInt Args_High, int AHelpContext)/* overload */ : Firedac::Phys::Odbcwrapper::EODBCNativeException(ResStringRec, Args, Args_High, AHelpContext) { }
/* Exception.CreateResFmtHelp */ inline __fastcall EInfxNativeException(System::NativeUInt Ident, const System::TVarRec *Args, const System::NativeInt Args_High, int AHelpContext)/* overload */ : Firedac::Phys::Odbcwrapper::EODBCNativeException(Ident, Args, Args_High, AHelpContext) { }
Description
Instantiates an instance of an exception with a simple message string.
FireDAC.Phys.Infx.EInfxNativeException.Create inherits from System.SysUtils.Exception.Create. All content below this line refers to System.SysUtils.Exception.Create.
Instantiates an instance of an exception with a simple message string.
Call Create to construct an exception object with a simple message string.
Msg is the string containing the run-time error message to display in the exception dialog box. Msg can be a hard-coded string or can be a function call that returns a string.
See Also
Code Examples