unixODBC 编译、安装、卸载

编译步骤:
 
1. 注意在以前做 make install 的目录下先做 make uninstall
 
2. 删除现有的解压后的目录
 
3. 解压文件,并复制一份
 tar -xzvf unixODBC-2.2.14.tar.gz
 cp -r unixODBC-2.2.14 unixODBC-2.2.14.orig
 
4. 打 patch
 patch -N -p0 < so-version-bump.patch
 
5. 编译,安装
 cd unixODBC-2.2.14
(
如果没有 configure 就执行以下命令,生成 configure
aclocal 
automake --add-missing 
autoconf)


./configure --prefix=/home2/.../unixODBC --enable-gui=no


linux32 上
 ./configure --prefix=/usr
 如果出错,出错信息中有 enable-gui=no,使用 ./congigure --enable-gui=no --prefix=/usr
 
linux64 上同样使用上述命令,如果有错,则尝试使用下面这条命令
 ./configure --with-qt-dir=/usr/lib64/qt-3.3/ --with-qt-includes=/usr/lib64/qt-3.3/include/ --with-qt-libraries=/usr/lib64/qt-3.3/lib/ --enable-gui=no --enable-drivers=no --prefix=/usr --libdir=/usr/lib64
 
 make
 make install


使用步骤:
1. 编译 ODBC 应用程序时,应链接到希望使用的版本 unixODBC 库文件
2. 配置数据库对应的 ODBC 驱动文件路径
   如果机器上已存在 unixODBC,则 ODBC 驱动的配置文件应该是 /usr/local/etc/odbcinst.ini
   unixODBC-2.3.1(./configure --prefix=***),配置 ODBC 驱动时,应该配置 ***/etc/odbcinst.ini,否则 ODBC 应用程序会报错:SQLSTATE=[01000] [unixODBC][Driver Manager]Can't open lib 'KingbaseES 6 ODBC Driver wwang' : file not found
3. 启动数据库


工作流程分析:
1. ODBC 应用程序通过连接串中的 DRIVER 名称到 unixODBC 的配置文件 odbcinst.ini 中查找所使用的数据库对应的 ODBC 驱动
2. 链接找到的 ODBC 驱动链接数据库。

你可能感兴趣的:(数据库,工作,manager,File)