03 2018 档案

摘要:https://www.cnblogs.com/onsuccessway/p/3355550.html 在SQLSERVER查询分析器中,当我们用Set Statistics on 语句来统计SQL语句或者存储过程I/O的时候, SQLSERVER会显示几个概念去词语:逻辑读取,物理读取,预读。 如 阅读全文
posted @ 2018-03-31 18:04 LuoCore 阅读(401) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.or 阅读全文
posted @ 2018-03-27 22:57 LuoCore 阅读(647) 评论(0) 推荐(0) 编辑
摘要:<style type="text/css"> *{margin:0px;padding:0px;}设置所有标签属性《初始化页面属性》 #nav{background-color:#eee;width:600px;height:40px;margin:0 auto;} ui{list-style:n 阅读全文
posted @ 2018-03-26 23:53 LuoCore 阅读(207) 评论(0) 推荐(0) 编辑
摘要:今天弄个div套着一个页面结果那个页面超出范围后页面没有滚动条可以滚动浏览下面的内容,原来是设置了overflow的hidden属性 阅读全文
posted @ 2018-03-25 14:43 LuoCore 阅读(683) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/heng95/p/5902019.html 连接字符串 SQL Client .net数据提供程序在连接到数据库时极其灵活,它提供了多种用以生成连接字符串的方式。可以使用关键字,例如“Data Sourse”、“Initial Catalog”,也可以 阅读全文
posted @ 2018-03-22 10:08 LuoCore 阅读(195) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/config_man/article/details/25578767 [csharp] view plain copy #region 调用timer控件实时查询开关机时间 private void timer1_Tick(object sender, E 阅读全文
posted @ 2018-03-19 22:19 LuoCore 阅读(209) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/dxb601/article/details/52086830 update 表名 set 字段名a= Lower(字段a) 2.将小写字母转化成大写字母 update 表名 set 字段名a= upper(字段名a) update 表名 set 字段名a= 阅读全文
posted @ 2018-03-16 13:08 LuoCore 阅读(1614) 评论(0) 推荐(0) 编辑
摘要:SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'ImmediacyOutKu' 阅读全文
posted @ 2018-03-15 19:50 LuoCore 阅读(219) 评论(0) 推荐(0) 编辑
摘要:select convert(varchar(10),getdate(),120) 输出格式:2008-02-27 00:25:13 SELECT CONVERT(char(19), getdate(), 120) 输出格式:2008-02-27 SELECT CONVERT(char(10), g 阅读全文
posted @ 2018-03-15 13:06 LuoCore 阅读(662) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/ligenyingsr/article/details/54095986 System.ConfigurationManager类用于对配置文件的读取。其具有的成员如下: 一、AppSettings AppSetting是最简单的配置节,读写非常简单。 名称 阅读全文
posted @ 2018-03-14 22:19 LuoCore 阅读(2378) 评论(0) 推荐(0) 编辑
摘要:string name = txtUserName.Text.Trim();//移除用户名前部和后部的空格 string pwd = txtUserPwd.Text.Trim();//移除密码前部和后部的空格 SqlConnection conn = new Sqlconnection(@"serv 阅读全文
posted @ 2018-03-14 22:15 LuoCore 阅读(244) 评论(0) 推荐(0) 编辑
摘要:http://heavenslv.iteye.com/blog/1033870 阅读全文
posted @ 2018-03-14 15:53 LuoCore 阅读(453) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/xht555/article/details/38685845 https://www.cnblogs.com/wuchao/archive/2012/12/25/2832744.html IEnumerable<DataGridViewRow> enume 阅读全文
posted @ 2018-03-08 21:07 LuoCore 阅读(2172) 评论(1) 推荐(1) 编辑
摘要:https://www.cnblogs.com/sufei/archive/2010/01/12/1645763.html var result = ((DataTable) (this.ComShop.DataSource)).AsEnumerable() .Where(f1 => f1["Nam 阅读全文
posted @ 2018-03-06 19:38 LuoCore 阅读(334) 评论(0) 推荐(0) 编辑
摘要:参考文章:http://www.cnblogs.com/Abel_cn/archive/2008/12/09/1351425.html http://blog.csdn.net/friendan/article/details/52182923 using System; using System. 阅读全文
posted @ 2018-03-02 14:45 LuoCore 阅读(258) 评论(0) 推荐(0) 编辑
摘要:http://bbs.csdn.net/topics/391085792 DataTable 老表= 新表.AsEnumerable().GroupBy(p => p["姓名"]).SelectMany(p => p.GroupBy(s => s["年龄"]).Select(x => x.First 阅读全文
posted @ 2018-03-02 11:17 LuoCore 阅读(832) 评论(0) 推荐(0) 编辑