Fix named pipe usage on command line. Fixes issue #3052.

This commit is contained in:
Ansgar Becker
2012-12-27 18:32:34 +00:00
parent c86d834b92
commit 8ac1e41cba

View File

@ -2830,7 +2830,7 @@ begin
p := p + ' --ssl --ssl-key="'+Conn.Parameters.SSLPrivateKey+'" --ssl-cert="'+Conn.Parameters.SSLCertificate+'" --ssl-ca="'+Conn.Parameters.SSLCACertificate+'"';
end;
ntMySQL_NamedPipe:
p := p + ' --protocol=socket --socket="'+Conn.Parameters.Hostname+'"';
p := p + ' --pipe --socket="'+Conn.Parameters.Hostname+'"';
ntMySQL_SSHtunnel:
p := p + ' --host="localhost" --port='+IntToStr(Conn.Parameters.SSHLocalPort);
end;