很早就开始注意到EF了,但一直没有机会用,换了工作后,第一个项目就使用EF6进行开发。 项目不是很大,EF完全可以胜任。 但是开发过程中,难免还是会遇到一些复杂的运算,需要频繁访问数据库。 此时,想到的比较简单的方式,就是使用存储过程,在存储过程中进行一定的运算,然后把运算的结果(一个查询结果)通过...
分类:
其他好文 时间:
2014-08-01 13:34:31
阅读次数:
140
import java.io.IOException;import java.io.PrintWriter;import javassist.CannotCompileException;import javassist.ClassPool;import javassist.CtClass;impo...
分类:
编程语言 时间:
2014-08-01 13:29:51
阅读次数:
286
http://simple-is-better.com/sites/http://wiki.woodpecker.org.cn/moin/PyBooks
分类:
编程语言 时间:
2014-08-01 13:17:01
阅读次数:
280
Problem Description输入n(nint main(){ int n,i,j,a[100],m,t,e; while(scanf("%d",&n)!=EOF&&(n!=0)) //(n!=0)作用:n=0表示输入的结束,不做处理。 { for(i=...
分类:
其他好文 时间:
2014-08-01 13:16:41
阅读次数:
163
oddball 英 ['?db??l] 美adj. 古怪的;奇怪的n. 古怪;古怪的人rather than 英 美 而不是;宁可…也不愿refer 英 [r?'f??] 美 [r?'f?] vi. 参考;涉及;提到;查阅vt. 涉及;委托;归诸于;使…求助于refer to参考...
分类:
其他好文 时间:
2014-08-01 13:05:41
阅读次数:
185
java.lang.IllegalStateException: Couldn't read row 0, col -1 from CursorWindow. Make sure the Cursor is initialized correctly before accessing data fr...
procedure TForm1.FormCreate(Sender: TObject);
begin Application.HintPause:=0;//立即显示 Application.hinthidepause:=100000;//if not leave then 显示100秒end;
来...
分类:
其他好文 时间:
2014-08-01 12:55:11
阅读次数:
180
好文章, 简明扼要. Storage Top 10 Best Practices http://technet.microsoft.com/en-us/library/cc966534.aspx
分类:
数据库 时间:
2014-08-01 12:54:31
阅读次数:
242
//获取网页源代码
var s: string;
begin s := WebBrowser1.OleObject.document.body.innerHTML; //body内的所有代码 s := WebBrowser1.OleObject.document.body.outerHTML; //...
分类:
Web程序 时间:
2014-08-01 12:53:01
阅读次数:
298
//在选中的节点中上添加1个节点
procedureTForm1.Button1Click(Sender:TObject); begin withTreeView1do begin Items.AddChild(Selected,'aaa'); end; end; //添加节点
procedureT...
分类:
其他好文 时间:
2014-08-01 12:47:41
阅读次数:
226