CentOS6.6下通过mysql-connector-c连接Mysql

茅曾琪
2023-12-01

    最近遇到一个问题:Mysql数据库下的某表的某字段的值中带有转义字符‘/’时取值不正确。

    针对该问题,解决的思路如下:1. 在本地模拟出测试环境把问题再现。 2. 分析问题的根源并给出解决方案。


1. 问题再现

    本地Linux环境为CentOS6.6

   安装mysql-connector-c-devel-6.1.11-1.el6.x86_64.rpm,下载地址在Mysql的官网Mysql Connector下,我下载的是https://dev.mysql.com/downloads/connector/c/

    更改库名:将路径/usr/lib64/mysql下的libmysqlclient.so.xx更改为libmysqlclient.so(因为在链接时会使用到该库)

    安装glibc-static:yum install glibc-static

    编译并运行可执行文件时遇到如下问题:

error while loading shared libraries: libmysqlclient.so.16: cannot open shared object file: No such file or directory

这是因为运行时没找到动态库,可以sudo ldconfig 动态库的路径



 类似资料: