Is it possible to connect to SqlServer (MSSQL) with Haskell and Linux?

haskell, linux, sql-server

Solution

The HDBC library lets you connect to any database supporting ODBC, which I'm quite sure Sql-Server does.

Problem

It's unclear to me whether anyone has/is successfully connected to MSSQL from Haskell and Linux. I've found things like this windows guide but nothing promising looking for Linux. Does anyone have any insight here?

Original source