摘要:创采e-HR管理系统,基于.Net和ExtJS技术,完全B/S架构,数据库支持Sql Server和Oracle
阅读全文
posted @ 2009-05-05 13:55
|
|||
随笔分类 - .Net
摘要:创采e-HR管理系统,基于.Net和ExtJS技术,完全B/S架构,数据库支持Sql Server和Oracle
阅读全文
posted @ 2009-05-05 13:55
摘要:一、在分析之前,先把Strategy模式和Chain of Resposibility模式做一下简单介绍。
阅读全文
posted @ 2007-07-31 13:38
摘要:在用NHibernate1.2.0.GA版本中自带的NHibernate.Examples-2.0下的QuickStart测试连接Oracle数据库时,一直提示:System.Data.OracleClient.OracleException : ORA-12704: character set mismatch,但如果改成连接SqlServer数据库,一切OK。
阅读全文
posted @ 2007-07-30 17:23
摘要:最近在工作中使用到了GridView这个控件,很好用,可当绑定数据量较大时,就会有性能问题,经过分析,找到了一种可以解决这个问题的方法,其实质是下面的SQL(Oracle)语句:
select a.*
from (select rownum as row_id, b.*
from (select * from table_name order by column_name asc) b) a
where a.row_id between record_begin_index and record_end_index
阅读全文
posted @ 2007-07-30 16:45
摘要:下面为参考.Net Framework整理的名称规则,请.Net开发人员务必通读全文。
阅读全文
posted @ 2007-03-08 14:03
|
|||