FireDAC.Phys.MySQL.TFDPhysMySQLDriverLink.EmbeddedArgs

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property EmbeddedArgs: TStrings read FEmbeddedArgs write SetEmbeddedArgs;

C++

__property System::Classes::TStrings* EmbeddedArgs = {read=FEmbeddedArgs, write=SetEmbeddedArgs};

Properties

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

Description

Specifies parameters to initialize MySQL embedded server.

The parameters are analog to mysqld.exe command line options. For a complete list of options, consult MySQL manual or run this command:

mysqld.exe --verbose --help

Code Example

  with FDPhysMySQLDriverLink1.EmbeddedArgs do begin
    Add('--basedir=./');
    Add('--datadir=./data');
    Add('--skip-innodb');
    Add('--skip-networking');
  end;

See Also