官网下载ODBC
https://www.unixodbc.org/
上传到linux系统中 /mnt下
[root@study ~]#cd /mnt
[root@study mnt]# tar -zxvf unixODBC-2.3.12.tar.gz
[root@study mnt]# cd unixODBC-2.3.12/
[root@study unixODBC-2.3.12]# ./configure
注意:若是报以上错 则是gcc未安装 执行一下 yum install gcc
编译安装
[root@study unixODBC-2.3.12]#make
[root@study unixODBC-2.3.12]#make install
查看一下odbc.ini的位置
[root@study unixODBC-2.3.12]# odbc_config --odbcini
/usr/local/etc/odbc.ini
修改文件
[root@study unixODBC-2.3.12]# cd /usr/etc/
[root@study etc]# vim odbc.ini
[DM8]
Description=DM ODBC DSN
Driver =DM8 ODBC DRIVER
SERVER = localhost
UID=SYSDBA
PWD=SYSDBA
TCP_PORT=5236
[root@study etc]# vim odbcinst.ini
[DM8 ODBC DRIVER]
Description=ODBC DRIVER FOR DM8
Driver = /dm8/bin/libdodbc.so
切换用户登录
[root@study etc]# su - dmdba
[dmdba@study ~]$ isql dm8
+---------------------------------------+
| Connected! |
| |
| sql-statement |
| help [tablename] |
| echo [string] |
| quit |
| |
+---------------------------------------+
登录成功