05 2015 档案

摘要:create table ESPACE_TABLE( TABLE_NAME VARCHAR2(100) not null)create table ESPACE_COLUMN( TABLE_NAME VARCHAR2(100) not null, COLUMN_NAME VARCHAR2(1... 阅读全文
posted @ 2015-05-14 15:40 Jydu 阅读(1800) 评论(0) 推荐(0)
摘要:select listagg(字段名,'分隔符') within group (order by 某个字段) 阅读全文
posted @ 2015-05-14 15:39 Jydu 阅读(283) 评论(0) 推荐(0)
摘要:CreateDate = DateTime.Parse(CreateDate).ToShortDateString(); 阅读全文
posted @ 2015-05-06 13:20 Jydu 阅读(194) 评论(0) 推荐(0)
摘要:步骤:1.先添加System.Transactions.dll的引用2.使用System.Transactions命名空间下的类实例:using (TransactionScope scope = new TransactionScope()){//你的业务代码scope.Complete();}备... 阅读全文
posted @ 2015-05-04 10:10 Jydu 阅读(541) 评论(0) 推荐(0)