FireDAC.Phys.TFDPhysDriverLink.VendorLib

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property VendorLib: String read FVendorLib write FVendorLib;

C++

__property System::UnicodeString VendorLib = {read=FVendorLib, write=FVendorLib};

Properties

Type Visibility Source Unit Parent
property published
FireDAC.Phys.pas
FireDAC.Phys.hpp
FireDAC.Phys TFDPhysDriverLink

Description

The path and the name of the CLI library.

Use VendorLib to specify the CLI library name and, optionally, the path. If VendorLib and VendorHome are both specified, then VendorLib will be appended to VendorHome.

A VendorLib change will have effect only before the first connection through this driver, otherwise you must use the Release method.

The property value is platform-independent and it will be used for all the platforms, including Win32, Win64, MacOS32, MacOS64, Linux32, and Linux64. To specify multiple platform-specific values, use the driver configuration file.

Example

FDConnection1.Close;
FDPhysIBDriverLink1.Release;
FDPhysIBDriverLink1.VendorLib := 'c:\fb25_64\fbclient.dll';
FDConnection1.Open;

See Also