摘要:
mysql版本号:5.5 创建用户:create user '用户名称'@'%' identified by '密码'; 授权 grant select,update,insert,delete,execute on 数据库名称.* to '用户名称'@'%'; 刷新权限:flush privile 阅读全文
摘要:
using (ServiceHost host = new ServiceHost(typeof(OperationService))) 这样写代码有何好处?using的作用范围自动回收垃圾,在这个范围内(就是括号里)声明的变量是有效的,当代码执行到using范围之外的时候,在里边声明的变量就会自动 阅读全文