随笔 - 303  文章 - 0  评论 - 11  阅读 - 15万
09 2016 档案
数据库优化
摘要:查询速度慢的原因很多,常见如下几种: 1、没有索引或者没有用到索引(这是查询慢最常见的问题,是程序设计的缺陷) 2、I/O吞吐量小,形成了瓶颈效应。 3、没有创建计算列导致查询不优化。 4、内存不足 5、网络速度慢 6、查询出的数据量过大(可以采用多次查询,其他的方法降低数据量) 7、锁或者死锁(这也是查询慢最常见的问题,是程序设计的缺陷)... 阅读全文
posted @ 2016-09-28 08:20 雪原日暮 阅读(202) 评论(0) 推荐(0) 编辑
2013调试sql的方法
摘要:view-sql server object explorer- 连接数据库-成功以后再服务器点击允许debug-在存储过程里面添加断点即可 阅读全文
posted @ 2016-09-27 15:46 雪原日暮 阅读(159) 评论(0) 推荐(0) 编辑
动态使用webservice,以及含有ref类型的参数的问题
摘要:public class WSHelper { /// /// 动态调用web服务 /// /// WSDL服务地址 /// 方法名 /// 参数 /// ... 阅读全文
posted @ 2016-09-26 16:18 雪原日暮 阅读(731) 评论(2) 推荐(0) 编辑
带有用户名密码验证的远程文件下载
摘要:try { string getFileName = Url.Substring(Url.LastIndexOf("/") + 1); HttpWebRequest WRequest; // HttpWebResponse response = null; ... 阅读全文
posted @ 2016-09-20 14:05 雪原日暮 阅读(425) 评论(0) 推荐(0) 编辑
注册表
摘要:http://blog.csdn.net/u014653068/article/details/47055469http://www.cnblogs.com/hfzsjz/archive/2010/08/23/1806563.htmlhttp://www.cnblogs.com/greatverve 阅读全文
posted @ 2016-09-17 08:20 雪原日暮 阅读(104) 评论(0) 推荐(0) 编辑
fsdfasfsa
摘要:http://www.cnblogs.com/daniel206/archive/2008/01/16/1041729.html using System.IO;using System.Net;using System.Reflection;using System.CodeDom;using S 阅读全文
posted @ 2016-09-13 17:47 雪原日暮 阅读(190) 评论(0) 推荐(0) 编辑
C# addin 开发心得记录
摘要:1.环境 2012 新建项目-2010外接程序 2.新建项-功能区 创建菜单等 发布: 1.InstallShield 2015 2.打包 说明按地址~https://msdn.microsoft.com/zh-cn/library/cc442767.aspx~ 3.所以环境打包成一个exe程序 解 阅读全文
posted @ 2016-09-11 21:08 雪原日暮 阅读(670) 评论(0) 推荐(0) 编辑
c# 读写注册表
摘要:private void button2_Click(object sender, EventArgs e) { try { RegistryKey key = Registry.LocalMachine; RegistryKey software = key.OpenSubKey("SOFTWAR 阅读全文
posted @ 2016-09-11 20:59 雪原日暮 阅读(160) 评论(0) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示