From 3fe4a1a0076e7e8fee459d48bb37d02db9769ea2 Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Sun, 12 Feb 2012 11:51:42 +0000 Subject: [PATCH] Flag MS SQL connection types as experimental. --- source/dbconnection.pas | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/dbconnection.pas b/source/dbconnection.pas index 72da5493..ca5acb8d 100644 --- a/source/dbconnection.pas +++ b/source/dbconnection.pas @@ -647,15 +647,15 @@ begin ntMySQL_SSHtunnel: Result := My+' (SSH tunnel)'; ntMSSQL_NamedPipe: - Result := 'Microsoft SQL Server (named pipe)'; + Result := 'Microsoft SQL Server (named pipe, experimental)'; ntMSSQL_TCPIP: - Result := 'Microsoft SQL Server (TCP/IP)'; + Result := 'Microsoft SQL Server (TCP/IP, experimental)'; ntMSSQL_SPX: - Result := 'Microsoft SQL Server (SPX/IPX)'; + Result := 'Microsoft SQL Server (SPX/IPX, experimental)'; ntMSSQL_VINES: - Result := 'Microsoft SQL Server (Banyan VINES)'; + Result := 'Microsoft SQL Server (Banyan VINES, experimental)'; ntMSSQL_RPC: - Result := 'Microsoft SQL Server (Windows RPC)'; + Result := 'Microsoft SQL Server (Windows RPC, experimental)'; end else case NetType of ntMySQL_TCPIP, ntMySQL_NamedPipe, ntMySQL_SSHtunnel: Result := My;