摘要:
很简单直接上代码 static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { //设置应用程序处理 阅读全文
摘要:
关闭MySQL root用户远程访问权限: use mysql; update user set host = "localhost" where user = "root" and host = "%"; flush privileges; 打开MySQL root用户的远程访问权限: 危险操作! 阅读全文