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

In This Topic
    Embedded Property (MySqlConnectionStringBuilder)
    In This Topic
    Specifies what server will be used to connect - MySQL server or Embedded MySQL server.
    Syntax
    'Declaration
     
    Public Property Embedded As Boolean
    public bool Embedded {get; set;}

    Property Value

    true, if Embedded MySQL server is used, false for MySQL server. The default value is false.
    Remarks
    You can use embedded server to ship the DBMS with your application and thus make your software more independent of target machine. However, this process is rather compound and is not recommended.

    You can read about features and using Embedded server at "Using MySQL Embedded server" article.

    See Also