Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm trying to get MSSQL working on Ubuntu 12.04 via ODBC, and I've followed these steps to the letter:

http://jamesrossiter.wordpress.com/2011/03/08/connecting-to-microsoft-sql-server-using-odbc-from-ubuntu-server/

However, this omits both of these files that are pointed at in odbcinst.ini:

Driver = /usr/lib/odbc/libtdsodbc.so
Setup = /usr/lib/odbc/libtdsS.so

So, I googled a bit and found this:

http://ubuntuforums.org/showthread.php?t=433435&page=2

So I followed those instructions and put libtdsodbc.so in /usr/lib/odbc/, but I still get this error:

Can't open lib '/usr/lib/odbc/libtdsodbc.so' : file not found, SQL state 01000 in SQLConnect

But...

root@ubuntu:/usr/lib/odbc# ls -la
total 552
drwxr-xr-x  2 root root   4096 Aug 19 20:12 .
drwxr-xr-x 62 root root  12288 Aug 19 19:41 ..
-rwxrwxr-x  1 root root 270608 Aug 19 20:00 libtdsodbc.so

I tried chmod 775 on that file, which explains the permissions. Still no luck.

Any ideas? I'm stumped. Would really love to get this working on my Linux box.

EDIT: I'm using Ubuntu 64-bit. I'm betting this is the problem. Hope that helps...

EDIT2: I tried manually getting the 64-bit package from here:

http://www.ubuntuupdates.org/package/core/precise/main/base/tdsodbc

And then I saw there was a file called this:

/usr/lib/x86_64-linux-gnu/odbc/libtdsodbc.so

Woo, maybe a 64-bit version, right?

So I pointed odbcinst.ini at it, and it didn't work.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
492 views
Welcome To Ask or Share your Answers For Others

1 Answer

sudo apt-get install freetds-dev

or

sudo apt-get install tdsodbc

now for 32-bit look in:

/usr/lib/i386-linux-gnu/odbc/libtdsodbc.so

or 64-bit:

/usr/lib/x86_64-linux-gnu/odbc/libtdsodbc.so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...