Linux ODBC driver issue

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Linux ODBC driver issue
# 1  
Old 05-21-2013
Linux ODBC driver issue

Hi Gurus,

I have a odbc in Linux.

when I run command ldd. I got following result:
Code:
 # ldd DWora26.so
        linux-vdso.so.1 =>  (0x00007fff26355000)
        libpthread.so.0 => /lib64/libpthread.so.0 (0x00007fc31e70a000)
        librt.so.1 => /lib64/librt.so.1 (0x00007fc31e501000)
        libDWicu26.so => not found
        libdl.so.2 => /lib64/libdl.so.2 (0x00007fc31e2fd000)
        libodbcinst.so => not found
        libstdc++.so.6 => /usr/lib64/libstdc++.so.6 (0x00007fc31dff6000)
        libm.so.6 => /lib64/libm.so.6 (0x00007fc31dd72000)
        libc.so.6 => /lib64/libc.so.6 (0x00007fc31d9e0000)
        libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x00007fc31d7ca000)
        /lib64/ld-linux-x86-64.so.2 (0x0000003a42400000)

my question is for these not found lib file ( libodbcinst.so => not found).
does this mean the system miss pkg or the lib path is wrong?

I am not Linux admin. I installed the application on Linux box.

Can anybody help me about this issue.

Thanks in advance.
# 2  
Old 05-27-2013
Quote:
Originally Posted by ken6503
my question is for these not found lib file ( libodbcinst.so => not found).
does this mean the system miss pkg or the lib path is wrong?
Either those libraries do not exist (not installed) or the OS doesn't know where to find them (they're not in LD_LIBRARY_PATH or /etc/ld.so.conf).

libodbcinst.so usually comes bundled with unixODBC rpm. I don't know about libDWicu26.so.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Linux

How to change ODBC Driver Manager?

Hi Forum. I have been searching this information for a while but to no avail. I'm running the following command odbcinst -j on a Linux box and get the following: unixODBC 2.3.0 DRIVERS............: //opt/Progress/DataDirect/Connect64_for_ODBC_71/odbcinst.ini SYSTEM DATA SOURCES:... (2 Replies)
Discussion started by: pchang
2 Replies

2. Shell Programming and Scripting

Establish ODBC connection from Linux

Hi All, I want to establish a ODBC connection to a database from linux and query the tables of a database. Please let me know how I can achieve this. Thanks and Regards Nagaraja Akkivalli. (0 Replies)
Discussion started by: Nagaraja Akkiva
0 Replies

3. Hardware

Difference between platform driver,codec driver and Machine driver

In general terms what are the differences platform driver,codec driver and Machine driver? (1 Reply)
Discussion started by: rupeshkp728
1 Replies

4. Ubuntu

Static Driver Loading Issue

To load the driver at boot time I added my driver name in /etc/modules. Next I copied the driver to /lib/modules/2.6.34.12/kernel/drivers/char/. But when I reboot the machine the drriver does not get loaded. What am I missing and how to load the driver at boot time? (9 Replies)
Discussion started by: rupeshkp728
9 Replies

5. Red Hat

odbc installation on linux.

HI All, I am trying to install odbc driver for mysql on linux red hat. when I try to install it using rpm then i get dependency error and when I try to find that dependent package then I am unable to find it on web. can you plz help me how can I install it. Thanks. # rpm -ivh... (3 Replies)
Discussion started by: mkashif
3 Replies

6. UNIX and Linux Applications

Linux ODBC in RHEL v5.2

I need some help with a project I am working on. I am writing a database application to manage some access lists. While this is for internal use only, the IT infrastructure is US Army managed. This severely limits which software I am allowed to use. I have a RHEL v5.2 server which uses some... (2 Replies)
Discussion started by: KenK
2 Replies

7. Shell Programming and Scripting

DBD::ODBC::st fetchrow_hashref failed: [unixODBC][Oracle][ODBC]Numeric value out of r

Here is part of my program code: #Collect the output of test database and count the no #of rows too while(my @array = $tstDbStatementHandle->fetchrow_array) { push @tstDbOutputArray,; $tstDbOutputRows++; } ... (3 Replies)
Discussion started by: sameerstephen
3 Replies

8. UNIX for Dummies Questions & Answers

ODBC Driver for UNIX

I have no experiance in Unix and I am trying to help our DBAs set up a connection from a Unix Oracle box to a DB2 database on an AS400 server. Does anyone know where I might find a good generic ODBC driver for Unix that should be able to connect to AS400? Any links to sites that would help would... (0 Replies)
Discussion started by: doctorofstyle
0 Replies
Login or Register to Ask a Question