Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Scenario
Have some perl code that wants to access Microsoft SQL Server 2005. The SQL Server is configured to only allow SSL connections for security reasons.
Solution
Here are the parts you will need:
- Perl on Linux (given)
- DBI ... https://dbi.perl.org/
- Unix ODBC (or equivalent like iODBC) ... https://www.unixodbc.org/
- FreeTDS (or equivalent ODBC driver) ... https://www.freetds.org/
- OpenSSL ... https://www.openssl.org/
- TLS
Resources
Microsoft guidance on accessing SQL Server with Perl
https://technet.microsoft.com/en-us/library/bb497071.aspx
Thanks for Brian on helping figure this out :) ... I am just the messenger.