摘要:
添加外部包:jcs-1.3.jarconcurrent-10.3.jarcache.cff# optional region "myCache" specific configuration settingsjcs.region.myCache=jcs.region.myCache.cacheattributes=org.apache.jcs.engine.CompositeCacheAttributesjcs.region.myCache.cacheattributes.MaxObjects=123456jcs.region.myCache.cacheattributes 阅读全文
摘要:
--Oracle分页:rownum--剔除所有信息select * from dczd order by dczd.dczd_dm;--剔除上述信息中的前9条select view1.*, rownum rn from (select * from dczd order by dczd.dczd_dm) view1where rownum < 10;--剔除所有信息中的3-9条select view2.* from (select view1.*, rownum rn from (select * from dczd order by dczd.dczd_dm) view1 where 阅读全文