dotConnect for MySQL Documentation
Devart.Data.MySql Namespace / MySqlConnectionStringBuilder Class / EquivalentTo Method / EquivalentTo(DbConnectionStringBuilder,Boolean) Method
A DbConnectionStringBuilder object to compare with.
If true,only the following properties are compared: UserId, Password, Host, Port, and Database.

In This Topic
    EquivalentTo(DbConnectionStringBuilder,Boolean) Method
    In This Topic
    Returns a value indicating whether this MySqlConnectionStringBuilder object has same parameters as given DbConnectionStringBuilder object.
    Syntax
    'Declaration
     
    Public Overloads Overrides Function EquivalentTo( _
       ByVal connectionStringBuilder As DbConnectionStringBuilder, _
       ByVal loginOnly As Boolean _
    ) As Boolean
    public override bool EquivalentTo( 
       DbConnectionStringBuilder connectionStringBuilder,
       bool loginOnly
    )

    Parameters

    connectionStringBuilder
    A DbConnectionStringBuilder object to compare with.
    loginOnly
    If true,only the following properties are compared: UserId, Password, Host, Port, and Database.

    Return Value

    true, if the two objects have same parameters; otherwise, false.
    Remarks
    Use EquivalentTo to quickly compare two DbConnectionStringBuilder objects. If you need to check only the main connection properties, ensuring that you login to the same place with the same user, set loginOnly to true.
    See Also