辅助类代码using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Caching;namespace BusinessRules.Common{ /// ...
分类:
Web程序 时间:
2014-07-14 00:23:19
阅读次数:
250
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Reflection;using System.Diagnostics;namespace Extension...
分类:
其他好文 时间:
2014-07-14 00:17:34
阅读次数:
206
using System;using System.Collections;using System.Collections.Generic;using System.Linq;using System.Text;using System.Reflection;using System.Diagno...
分类:
其他好文 时间:
2014-07-13 23:53:33
阅读次数:
314
函数的逻辑读成零drop table t;CREATE TABLE T AS SELECT * FROM DBA_OBJECTS;CREATE OR REPLACE FUNCTION F_NO_RESULT_CACHE RETURN NUMBER ASV_RETURN NUMBER;BEGINSEL...
分类:
其他好文 时间:
2014-07-13 22:59:02
阅读次数:
299
使用缓存HINT 让逻辑读变成0.create table t as select * from dba_objects;insert into t select * from t;commit;set autotrace onset timing onset linesize 1000select...
分类:
数据库 时间:
2014-07-13 22:54:22
阅读次数:
352
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Diagnostics;using System.IO;namespace LambdaExpressionA...
分类:
其他好文 时间:
2014-07-13 21:29:37
阅读次数:
227
/*
F - 广搜 基础
Time Limit:1000MS Memory Limit:10000KB 64bit IO Format:%I64d & %I64u
Submit
Status
Description
Technicians in a pathology lab analyze digitized images of slides. Objects on a sl...
分类:
其他好文 时间:
2014-07-13 15:40:14
阅读次数:
229
.NET中有三种注释:1.单行注释//2.多行注释/*开始*/结束3.文档注释在类或方法前面敲/////////文档注释///usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text;
namespace注释
{
classProgram
{
///<summary>
///这个方法是程序的入口这..
分类:
Web程序 时间:
2014-07-13 14:24:41
阅读次数:
183
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Diagnostics;using System.IO;namespace LambdaExpressionA...
分类:
其他好文 时间:
2014-07-13 12:53:19
阅读次数:
181
引言在软件开发过程中,并发控制是确保及时纠正由并发操作导致的错误的一种机制。从 ADO.NET 到 LINQ to SQL 再到如今的 ADO.NET Entity Framework,.NET 都为并发控制提供好良好的支持方案。 并发处理方式一般分为乐观必并发与悲观必并发两种,本文将为大家介绍 E...
分类:
其他好文 时间:
2014-07-13 12:49:54
阅读次数:
353