FireDAC.Phys.MySQL.TFDPhysMySQLDriverLink.EmbeddedArgs

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

property EmbeddedArgs: TStrings read FEmbeddedArgs write SetEmbeddedArgs;

C++

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

Propriétés

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


Description

Spécifie des paramètres permettant d'initialiser le serveur embarqué MySQL.

Les paramètres sont analogues aux options de la ligne de commande mysqld.exe. Pour une liste complète d'options, consultez le manuel MySQL ou exécutez cette commande :

mysqld.exe --verbose --help

Exemple de code

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

Voir aussi