dotConnect for MySQL Documentation
Devart.Data.MySql Namespace / MySqlConnectionStringBuilder Class / ServerParameters Property

In This Topic
    ServerParameters Property
    In This Topic
    Gets or sets parameters for launching MySQL embedded server.
    Syntax
    'Declaration
     
    Public Property ServerParameters As String
    public string ServerParameters {get; set;}

    Property Value

    Parameters for launching MySQL embedded server. The default value is empty string.
    Remarks

    This property allows to specify startup parameters for embedded server. Most important are parameters that tell MySQL embedded server where to look for miscellaneous files and databases. The following example shows how to avoid using an ini file and set appropriate paths to run the server:

    --basedir=c:/servers/embedded/;--datadir=c:/servers/embedded/data/;

    See Also