摘要: --批量删除表 DECLARE @Table NVARCHAR(30) DECLARE tmpCur CURSOR FOR SELECT name FROM sys.objects WHERE TYPE='U' AND name LIKE N'%_QueryLog' --删除所有含有"_QueryLog"的表 OPEN tmpCur FE... 阅读全文
posted @ 2017-07-06 09:57 幸福安康 阅读(2245) 评论(0) 推荐(0) 编辑
摘要: txt文件中的格式: 阅读全文
posted @ 2017-06-27 18:14 幸福安康 阅读(4266) 评论(0) 推荐(0) 编辑
摘要: 1,先加入命名空间: using System.Net.Security; using System.Security.Authentication; using System.Security.Cryptography.X509Certificates; 2,再重载CheckValidationResult方法,返回true public bool CheckValidationResu... 阅读全文
posted @ 2017-06-27 17:10 幸福安康 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 后台使用thinkphp返回json: jquery选中特定的text: 阅读全文
posted @ 2017-06-26 14:51 幸福安康 阅读(2533) 评论(0) 推荐(0) 编辑
摘要: 1、在项目上点击右键,点击“查看” 》“查看类图”: 2、生成的类图如下: 阅读全文
posted @ 2017-06-23 11:10 幸福安康 阅读(6528) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { private static readonly string sqlconnection =""; //遍历循环client表 IList StuList; using (var connection = new Sys... 阅读全文
posted @ 2017-06-20 18:07 幸福安康 阅读(1939) 评论(0) 推荐(0) 编辑
摘要: sql文件: 阅读全文
posted @ 2017-06-20 15:35 幸福安康 阅读(223) 评论(0) 推荐(0) 编辑
摘要: static string get_html(string url) { var request = WebRequest.Create(url); var response = request.GetResponse(); var html = ""; using (StreamR... 阅读全文
posted @ 2017-06-19 19:19 幸福安康 阅读(226) 评论(0) 推荐(0) 编辑
摘要: git add git commit -m '添加了页面' git push -u origin master git log --查看提交历史 git pull --获取最新更新 阅读全文
posted @ 2017-06-19 13:21 幸福安康 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-06-16 18:08 幸福安康 阅读(105) 评论(0) 推荐(0) 编辑