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...
阅读全文
摘要:select listagg(字段名,'分隔符') within group (order by 某个字段)
阅读全文
摘要:CreateDate = DateTime.Parse(CreateDate).ToShortDateString();
阅读全文
摘要:步骤:1.先添加System.Transactions.dll的引用2.使用System.Transactions命名空间下的类实例:using (TransactionScope scope = new TransactionScope()){//你的业务代码scope.Complete();}备...
阅读全文