Open daveloyall opened 9 years ago
@daveloyall Short answer: no idea ;) Generally talking to MSSQL via unixODBC is the best way to do it currently (especially if you can get your hands on the Microsoft linux driver).
Nevertheless I would appreciate pointers to how to properly setup a JDBC connection on linux however, so maybe this can be tried in the future.
This command line:
returns:
If you're not familiar with
DBD::JDBC
, here is my synopsis: the thing has at least two components: a standalone java application which speaks JDBC on one side and listens for incoming connections on the other. It acts as a proxy... The perl part ofDBD::JDBC
talks to the little server. So, a variety of RBDMS are made available to perl'sDBI
via this bridge. (I guess DBI is to perl as JDBC is to Java?)So I looked around a little and determined that I should implement
SQL::Translator::Parser::DBI::JDBC
. I inspectedSQL::Translator::Parser::DBI::SQLServer
for guidance. I quit when I saw the following in theDBD::JDBC
README
file.Meanwhile, I'll return to trying to use
unixODBC
to talk to MS SQL Server.