install_driver(ODBC) failed: DBI version 1.609 required--this is only version 1.602

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • omakhileshchand
    New Member
    • May 2012
    • 13

    install_driver(ODBC) failed: DBI version 1.609 required--this is only version 1.602

    i were using server(centos 5.5) with perl 5.8.8

    Now I'm using perl 5.10.1 my current server(centos 6.3)

    Whenever execute my programming I got this problem :-

    install_driver( ODBC) failed: DBI version 1.609 required--this is only version 1.602 at /usr/share/perl5/Exporter/Heavy.pm line 241.


    Please guide me..
  • RonB
    Recognized Expert Contributor
    • Jun 2009
    • 589

    #2
    The error message is telling you that the version of DBD::ODBC that you're using requires a newer version of the DBI module than you currently have installed. You need to upgrade DBI to at least v1.609. The latest version on cpan is 1.622 so that is what you should install.

    Comment

    • omakhileshchand
      New Member
      • May 2012
      • 13

      #3
      Hi RonB,

      After upgrading the DBI version from v1.609 to v1.622 i got new error.

      install_driver( ODBC) failed: Can't load '/usr/local/lib64/perl5/auto/DBD/ODBC/ODBC.so' for module DBD::ODBC: libodbc.so.1: cannot open shared object file: No such file or directory at /usr/lib64/perl5/DynaLoader.pm line 200.
      at (eval 3) line 3

      when i perform following commond i got libodbc.so.1 is not found

      [root@test]# ldd /usr/local/lib64/perl5/auto/DBD/ODBC/ODBC.so
      linux-vdso.so.1 => (0x00007fffde56 9000)
      libodbc.so.1 => not found
      libc.so.6 => /lib64/libc.so.6 (0x00007f591e49 a000)
      /lib64/ld-linux-x86-64.so.2 (0x0000003d25e0 0000)

      please help me..

      Comment

      • numberwhun
        Recognized Expert Moderator Specialist
        • May 2007
        • 3467

        #4
        Has the suggestions in your cross post been of any help to you?

        Comment

        Working...