实在没辙了,求救

写了一个简单到极点的MYSQL客户程序--它连接一个服务器.断开连接.退出.
编译通过,并生成可运行文件,可在\运行时却出现
./myclient: error while loading shared libraries: libmysqlclient.so.14: cannot open shared object file: No such file or directory

代码如下:
#include <my_global.h>
#include <mysql.h>

static char *opt_host_name=NULL;
static char *opt_user_name=NULL;
static char *opt_password=NULL;
static unsigned int opt_port_num=0;
static char *opt_socket_name=NULL;
static char *opt_db_name=NULL;
static unsigned int opt_flags=0;

static MYSQL *conn;

int main(int argc,char *argv[])
{
conn=mysql_init(NULL);
mysql_real_connect(conn,opt_host_name,opt_user_name,opt_password,opt_db_name,opt_port_num,opt_socket_name,opt_flags);
mysql_close(conn);
exit(0);
}