server=localhost;user=root;password=123456;database=test;
可是到了连接里面,就变成了
server=localhost;user=root;database=test;
然后程序运行就出现了 Using Password No的异常信息,
经询问同时,应该增加一个配置参数persist security info=true;
server=localhost;user=root;password=123456;database=test;persist security info=true;
如果不加,则.NET会自动把密码部分去除。
http://www.laozizhu.com/viewp articleId=618