首页  >  文章  >  数据库  >  c++-vs下链接mysql数据库出错

c++-vs下链接mysql数据库出错

WBOY
WBOY原创
2016-06-06 09:38:38962浏览

mysqlc++数据库vs2010

数据库初始化没有问题,可以连接
使用mysql_query出现问题,无法查询
代码如下:
MYSQL_RES * result = NULL;
CString temp ( "select username from user_login where username = ");
MYSQL_ROW row;
CString douhao("'");
int res;
CString i_query = temp + douhao + name + douhao ;
if ((res = mysql_query(&mysql, (LPSTR)(LPCTSTR)i_query) )!= 0) //mysql_query函数为0时说明成功,mysql_query函数里面的sql语句不应该包含分号
{
mysql_errno(&mysql);
return -1;
}
else
{
res = mysql_field_count(&mysql);
if ((result = mysql_store_result(&mysql)) == NULL)
{
return -1;
}
else
{
//row = mysql_fetch_row(result);
//if (passwd == row[1])
return 0; //返回值只可能有一个,因为名字是主键
/* else
return -1;*/
}
}
mysql_free_result(result);
result = NULL;

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn