用C++打开文件MOONFANTASY苍之曲\MapleStoryServer\MySQLM.cpp
找不到就搜索MySQLM.cpp这个文件!
将intMySQL::connectToMySQL(){
if(!mysql_real_connect(&maple_db,localhost,root,,maplestory,3306,NULL,0)){
printf(mysql_error(&maple_db));
return0;
}
return1;
}
改为
intMySQL::connectToMySQL(){
if(!mysql_real_connect(&maple_db,localhost,root,root,maplestory,3306,NULL,0)){
printf(mysql_error(&maple_db));
return0;
}
return1;
}