centos odbc mysql_谁有centos下odbc的配置

堕落kiss 于 2010-05-10 16:02:50发表:

Setting up ODBC on CentOS 5.2

Pre-requisites

unixODBC needs libstc++.so.5 and libtdl.so.3, which can be easily installed using

$ yum install compat-libstdc++-33.i386 libtool-ltdl.i386 libX11 libXcursor libXext

Next, we need to install unixODBC:

$ yum install unixODBC

Then we need the ODBC Driver and Setup Library (both generic RPM version), which can be downloaded on the MySQL website.

There's a newer version 5.1 of the ODBC connector on the site, but it will not work on CentOS 5.2!

Once they are downloaded in a directory, install both using

$ rpm -Uhv *.rpm

Ok, that's the installation part. Now let's go to the configuration.

Configuration files

/etc/odbcinst.ini

[MySQL ODBC 3.51 Driver]

DRIVER = /usr/lib/libmyodbc3.so

SETUP = /usr/lib/libmyodbc3S.so

UsageCount = 1

Delete everything else, especially if there are other driver sections referring to MySQL. They will not work anyway.

/etc/odbc.ini

This file defines your DSNs. Let's take this example:

[mydsn]

Description = emma database on devel2

Driver = /usr/lib/libmyodbc3.so

Server = 172.20.8.141

Database = mydb

Port = 3306

Option = 3

User = yournamehere

Password = yourpasswordhere

Installing Driver/DSN

Now we are ready to install the driver and DSN (in this order):

$ odbcinst -i -d -f /etc/odbcinst.ini

$ odbcinst -i -s -l -f /etc/odbc.ini

For clients, which cannot use system DSNs and need user-level DSNs, execute this as the user:

$ odbcinst -i -s -h -f /etc/odbc.ini

Note the h (User) instead of l (System) switch! Couldn't be more obvious, right?

Let's check if your data source is listed now:

$ odbcinst -s -q

If so, well done! ODBC is running.

You can now connect using the isql tool, where you can issue SQL statements just like with the mysql client:

isql mydsn

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值