in reply to ODBC related perl module

Don't you have access to the main package? The module is listed there:
From the first (narrative) paragraph of PerlMod:

If the package name is null, the main package is assumed. That is, $::sail is equivalent to $main::sail .

check Ln42!

Replies are listed 'Best First'.
Re^2: ODBC related perl module
by millan123 (Initiate) on Aug 13, 2014 at 11:46 UTC
    In this codebase only one module has been called that is Oraperl.pm. this module is being used for Unix OS .For example for db connectivity from unix,the code is
    $n = &ora_login($db, $ui, $pwd);
    for db connectivity from windows NT,the code is
    ($n, $err, $errtext) = ::ODBC_Connect($DSN);
    From this code, i understood ora_login is from Oraperl.pm but cannot understand where ODBC_Connect is coming from.