DataTable是我们在进行开发时经常用到的一个类,并且经常需要对DataTable中的数据进行筛选等操作,下面就介绍一下Datatable中经常用到的一个方法——Select,微软提供了四个函数的重载,分别是Select()Select(string filterExpression)Selec...
分类:
其他好文 时间:
2014-06-28 22:37:12
阅读次数:
302
Group By/Having操作符适用场景:分组数据,为我们查找数据缩小 范围。说明:分配并返回对传入参数进行分组操作后的可枚举对象。分 组;延迟1.简单形式:var q = from p in db.Products group p by p.CategoryID into g selec...
分类:
数据库 时间:
2014-06-28 21:56:01
阅读次数:
225
BACKGROUNDProcessor power consumption has become a major issue in recent years. The current trend of processor design to multi-core architecture as ea...
分类:
其他好文 时间:
2014-06-18 22:16:54
阅读次数:
435
Cache类,是一个用于缓存常用信息的类。HttpRuntime.Cache以及HttpContext.Current.Cache都是该类的实例。一、属性属性说明Count获取存储在缓存中的项数。EffectivePercentagePhysicalMemoryLimit获取在 ASP.NET .....
分类:
Web程序 时间:
2014-06-18 13:40:24
阅读次数:
266
比如直接查看ORA-01031错误gaosheng-> oerr ora 0103101031, 00000, "insufficient privileges"// *Cause: An attempt was made to change the current username or pass...
分类:
其他好文 时间:
2014-06-18 09:19:08
阅读次数:
210
rman备份脚本
#! /bin/bash
su - oracle
rman target /
backup AS COMPRESSED BACKUPSET
database
include current controlfile format'/orabak/db_%d_%T_%s'
plus archivelog format'/orabak/a...
分类:
系统相关 时间:
2014-06-17 19:33:13
阅读次数:
348
以2.7升级到3.3为例1.删除原版本a)删除系统库中的版本sudo rm -R /System/Library/Frameworks/Python.framework/Versions/2.7b)删除Current版本sudo rm /System/Library/Frameworks/Pytho...
分类:
编程语言 时间:
2014-06-17 15:35:13
阅读次数:
518
1.The GetCurrentDirectory function retrieves the current directory for the current processDWORD GetCurrentDirectory( DWORD nBufferLength, // size of d...
分类:
其他好文 时间:
2014-06-17 13:44:58
阅读次数:
206
有时候我们展示给用户的表单中的checkbox,radio,selec等标签的一些项是默认选中的。比方:当用户改动文章的时候,假设相应的栏目为下拉框的话,那么它的默认选中值应该是原来的栏目位置。能够使用jquery中的val()方法给select、checkbox、radio设置默认选中项。对于mu...
分类:
其他好文 时间:
2014-06-17 00:35:36
阅读次数:
290
如下一个存储过程是dba创建一个表空间、创建一个用户并给这个用户授予权限:
create or replace procedure createTS(tname in varchar2)
is
PRAGMA AUTONOMOUS_TRANSACTION;
v_createsql varchar2(400);
vtbsname varchar2(40);
...
分类:
其他好文 时间:
2014-06-16 19:37:04
阅读次数:
229