- 论坛徽章:
- 0
|
我的Mysql服务器是一台win2K,版本是4.1,客户端是linux,在命令行下连接没问题的,在程序中连接就提示错误:Client does not support authentication protocol requested by server; consider upgrading MySQL client。
命令行下:
mysql -h 192.168.0.88 -u testdb -pwst01 -P9898
可以连接到数据库查询、删除都没问题。用程序连接却报上面的错误,请指点一下。不胜感激!!
MYSQL *ConnectDB(int iTimeOut, char *mHost, char *mUser, char *mPwd, char *myDB, int mPort)
{
int bCompress, bInFile, iSelectLimit, bSSL;
char init_command[100];
MYSQL *mySQL=NULL, *mySQLConnect=NULL;
bCompress = 1;
bInFile = 0;
iSelectLimit = 1000;
bSSL = 0;
mysql_opt_max_join_size = 1000000L;
mysql_client_flags = 0;
mySQL = mysql_init(0);
if (bCompress)
{
mysql_options(mySQL, MYSQL_OPT_COMPRESS,0);
mysql_client_flags |= CLIENT_COMPRESS;
}
if (iTimeOut)
mysql_options(mySQL, MYSQL_OPT_CONNECT_TIMEOUT, (char*)&iTimeOut);
if(bInFile)
mysql_options(mySQL, MYSQL_OPT_LOCAL_INFILE, bInFile ? 0 : (char*) &bInFile);
if (iSelectLimit > 0)
{
if (mysql_opt_max_join_size > 0)
sprintf(init_command, "SET SQL_SELECT_LIMIT=%d,SQL_MAX_JOIN_SIZE=%d", iSelectLimit, mysql_opt_max_join_size);
else
sprintf(init_command, "SET SQL_SELECT_LIMIT=%d", iSelectLimit);
}
else
{
if (mysql_opt_max_join_size > 0)
sprintf(init_command, "SET SQL_MAX_JOIN_SIZE=%d", mysql_opt_max_join_size);
else
sprintf(init_command, "SET SQL_BIG_SELECTS=1");
}
mysql_options(mySQL, MYSQL_INIT_COMMAND, init_command);
if (bSSL)
mysql_client_flags |= CLIENT_SSL;
if( !(mySQLConnect = mysql_real_connect(mySQL, myHost, myUser, myPwd, myDB, myPort, NULL, mysql_client_flags)) )
{
sprintf(errstring, "mysql_real_connect failed: %s", mysql_error(mySQL));
if (mySQL != 0)
mysql_close(mySQL);
mySQL = NULL;
return NULL;
}
return mySQL;
} |
|