摘要: 1 using System; 2 using System.Linq; 3 4 namespace Linq101 5 { 6 class QueryExecution 7 { 8 /// 9 /// The following sample ... 阅读全文
posted @ 2015-05-13 14:44 David Huang 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 5 namespace Linq101 6 { 7 class CustomSequence 8 { 9 publ... 阅读全文
posted @ 2015-05-12 17:38 David Huang 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 5 namespace Linq101 6 { 7 class Miscellaneous 8 { 9 /// 1... 阅读全文
posted @ 2015-04-22 15:15 David Huang 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 5 namespace Linq101 6 { 7 class Aggregate 8 { 9 ... 阅读全文
posted @ 2015-04-22 14:53 David Huang 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 返回XMLDocument类型,默认会解析为json格式。返回字符串会默认加双引号。 解决方法:返回HttpResponseMessage类型,自定义返回值类型。 HttpResponseMessage responseMessage = new HttpRes... 阅读全文
posted @ 2015-03-19 17:15 David Huang 阅读(3938) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 5 namespace Linq101 6 { 7 class Quantifiers 8 { 9 /// 10 ... 阅读全文
posted @ 2015-03-12 15:31 David Huang 阅读(300) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Linq; 3 4 namespace Linq101 5 { 6 class Generation 7 { 8 /// 9 /// This sample uses Range to... 阅读全文
posted @ 2015-03-09 16:33 David Huang 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 5 namespace Linq101 6 { 7 class Element 8 { 9 /// 10 ... 阅读全文
posted @ 2015-03-09 15:28 David Huang 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 数据库在导入数据的过程中,意外关机。重启机器后,pl/sql-developer不能登录数据库,报错ORA-01033:oracle initializationor shutdown in progress。解决步骤如下:运行cmdC:\Users\Dell3800>set oracle_si... 阅读全文
posted @ 2015-03-02 09:44 David Huang 阅读(5426) 评论(0) 推荐(0) 编辑
摘要: 用于直接drop掉表的情况(plsql developer直接删掉表就是drop操作)查删除的表select object_name,original_name,partition_name,type,ts_name,createtime,droptime from recyclebin;同时查... 阅读全文
posted @ 2015-02-11 09:58 David Huang 阅读(223) 评论(0) 推荐(0) 编辑