Point perl at specific freeTDS library

208 Views Asked by At

We have multiple versions of perl and multiple versions of freeTDS compiled on the system. Is there a way that I can tell perl exactly which freeTDS version to use, or is that somehow built in?

The 'default' version of freeTDS that gets called when I "use DBI" in my perl script points to a version that doesn't seem to actually work properly. I've discovered this via testing with the tsql command that comes with freeTDS. if I run it from that version, failure. If I run from another freeTDS version we have installed, it connects just fine.

But now I don't know how to point perl at the other version of freeTDS.

3

There are 3 best solutions below

1
On

Here is a link on how to specify what version of a module that you want to use: perldoc

Is is essentially use module version;

Here is a link to perlmonks where configuring freeTDS is discussed: perlmonks

0
On

The freeTDS library must be specified while the corresponding DBD driver (I guess DBD::Sybase) is installed/compiled.

0
On

I'm assuming you're using DBD::Sybase as your driver. When building the module, one must provide two environment variables:

  • $SYBASE: the path to the already-built FreeTDS SDK: on Linux that would be the path to a directory containing two subdirectories:
    • include (.h files)
    • lib64 (.a files)
  • $FREETDS: the path to the FreeTDS config
    • on Linux it must contain etc\*.conf, on Windows it must contain directly the *.conf files
    • IIRC, this variable isn't used until the test-phase (i.e. run-time) of DBD::Sybase