Help for this page

Select Code to Download


  1. or download this
    Driver config file odbcinst.ini
    [FreeTDS]
    ...
    Threading=0
    FileUsage=1
    DontDLClose=1
    
  2. or download this
    Perl Program
    #!/usr/bin/perl
    ...
    
    $dsn = "dbi:ODBC:DRIVER={FreeTDS};Server=$server;database=$database;";
    $dbh = DBI->connect("$dsn","$user","$password") or die "\n$DBI::errstr
    +\n";