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.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also