2013年8月24日

摘要: #1251 -- (Client does not support authentication protocol requested by server; consider upgrading MySQL client )修改数据库用户密码格式1)MySQL->SET PASSWORD FOR 'some_user'@'some_host'=OLD_PASSWORD('new_password'); MySQL->FLUSH PRIVILEGES;2)MySQL->UPDATE MySQL.user SET Password= 阅读全文
posted @ 2013-08-24 17:26 makeup1122 阅读(4525) 评论(1) 推荐(0) 编辑
摘要: inline void debugout(const char* fmt, ...){ char buf[512]; try{ va_list ap; va_start(ap,fmt); _vsnprintf(buf,sizeof(buf)-1,fmt,ap); va_end(ap); OutputDebugString(buf); } catch(...) { OutputDebugString("exception in construct debug message\n");... 阅读全文
posted @ 2013-08-24 17:26 makeup1122 阅读(227) 评论(0) 推荐(0) 编辑

导航