上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
  2015年7月17日
摘要: Oracle与Sql server都遵循SQL-92标准:http://owen.sj.ca.us/rkowen/howto/sql92F.html,但是也有一些不同之处,差别如下:Oracle中表名,字段名,存储过程名,变量名不能超过30个字符串长度。Oracle中不支持Top 语法。使用wher... 阅读全文
posted @ 2015-07-17 20:47 fery 阅读(683) 评论(0) 推荐(0) 编辑
  2015年5月26日
摘要: http://dean.edwards.name/packer/ 阅读全文
posted @ 2015-05-26 21:20 fery 阅读(133) 评论(0) 推荐(0) 编辑
  2015年5月23日
摘要: 使用Lambda表达式,实现代码如下:private static void SortByLambda() { List list = GetArticleList(); list.Sort((x, y) => { int value = x.SortIndex.CompareTo(y.SortIn... 阅读全文
posted @ 2015-05-23 21:37 fery 阅读(782) 评论(0) 推荐(0) 编辑
  2015年5月20日
摘要: .net平台下C#socket通信(上): http://www.cnblogs.com/ysyn/p/3399351.html 阅读全文
posted @ 2015-05-20 19:48 fery 阅读(117) 评论(0) 推荐(0) 编辑
  2015年5月19日
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2015-05-19 22:23 fery 阅读(12) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2015-05-19 22:22 fery 阅读(2) 评论(0) 推荐(0) 编辑
摘要: public static class WcfExtensions{ public static void Using(this T client, Action work) where T : ICommunicationObject { try { work(client); client.Cl... 阅读全文
posted @ 2015-05-19 22:03 fery 阅读(301) 评论(0) 推荐(0) 编辑
  2015年2月10日
摘要: ///全角空格为12288,半角空格为32 ///其他字符半角(33-126)与全角(65281-65374)的对应关系是:均相差65248 //半角转换为全角函数 function ToDBC(txtstring) { var tmp = ""; for (var i = 0; i 65248... 阅读全文
posted @ 2015-02-10 17:10 fery 阅读(418) 评论(0) 推荐(0) 编辑
  2014年11月11日
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2014-11-11 16:31 fery 阅读(3) 评论(0) 推荐(0) 编辑
  2014年6月23日
摘要: 技巧: 将待统计的字符通过Replace函数移除,然后再通过未移除前的字符串长度减去移除后的字符串长度即可算出。eg: SELECT ((LEN(ErrorList) + 1.00 - LEN(REPLACE(ErrorList, ';', '')) 阅读全文
posted @ 2014-06-23 14:16 fery 阅读(390) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页