Edge
4.5
Planned
Connections to SQL Server databases using the Virtual Interface Adapter (VIA) protocol are no longer supported. The protocol used to connect to a SQL Server database is visible in the connection string. A VIA connection will contain via:<servername>. If this app is connecting to SQL via a protocol other than VIA (tcp: or np: for example), then no breaking change will be encountered.
Also, connections to SQL Server 7 (1997) are no longer supported.
- Quirked
- Build-time break
The VIA protocol is deprecated, so an alternative protocol should be used to connect to SQL databases. The most common protocol used is TCP/IP. Instructions for enabling the TCP/IP protocol can be found here. If the database is only accessed from within an intranet, the shared pipes protocol may provide better performance if the network is slow.
M:System.Data.SqlClient.SqlConnection.#ctor(System.String)
M:System.Data.SqlClient.SqlConnection.#ctor(System.String,System.Data.SqlClient.SqlCredential)
Data