dotConnect for SQL Server Documentation
Devart.Data.SqlServer Namespace / SqlConnectionStringBuilder Class / ConnectionMode Property

In This Topic
    ConnectionMode Property
    In This Topic
    Gets or sets the connection mode that determines the library used to establish a connection to SQL Server.
    Syntax
    'Declaration
     
    Public Property ConnectionMode As SqlConnectionMode
    public SqlConnectionMode ConnectionMode {get; set;}

    Property Value

    One of the SqlConnectionMode values:
    The MicrosoftDataSqlClient mode uses the modern Microsoft.Data.SqlClient library, which provides enhanced functionality.
    The SystemDataSqlClient mode uses the legacy System.Data.SqlClient library.
    See Also