MySql workbench can't connect to SQL Server 2017 with ODBC on macOS 10.14

0

I run SQL Server 2017 in Docker and I have installed the Microsoft ODBC Driver 17 for SQL Server. The document is here: https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-2017

The command I used to install ODBC:

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew tap microsoft/mssql-release https://github.com/Microsoft/homebrew-mssql-release
brew update
brew install msodbcsql17 mssql-tools

And I add the driver to ODBC Manager:

enter image description here

Driver file name:

/usr/local/Cellar/msodbcsql17/17.3.1.1/lib/libmsodbcsql.17.dylib

But when I click to test connection, nothing happened and the application is dead:

enter image description here

How can I fix it?

Wayne

Posted 2019-05-25T15:29:59.700

Reputation: 1

No answers