摘要:windows server 2003 (windows xp sp2) 下用jsp访问sqlserver 2000 数据库 (error establish socket)
默认安装sqlserver 2000企业版后,用jsp调用jdbc驱动程序访问数据库,会得出“error establish socket”的出错提示,即驱动程序找不到sqlserver的端口,通......
摘要:community server 是一个集成了论坛(asp.net forums),blog(dottext),相册(ngallery),同时将会和dnn3.0合成的开源产品。
官方网站:www.communityserver.org
官方公告(原文):within the next 2 weeks we will be announcing the availability of commu......
构建一个容易单元测试的java--web系统 最近在做一个项目,我们使用的是一些看似很标准的web结构,dao(数据访问)+helper(处理业务操作)+action(调用helper层)+struts的控制系统,页面使用struts标签与部分自定义标签完成显示. 【程序编程相关:
eclipse 插件项目开发之前言】 【推荐阅读:
控件style你知我知. 】 进入测试阶段后 【扩展信息:
.net中实现运行时从字符串动态创建对象】 1,dao测试--junit的确非常不错,我们使用eclipse+junit.jar,很满意的完成了这部分检测 2.helper测试--使用与dao相同的测试方法完成测试 3.进入action测试阶段,出现问题,首先mapping无法模拟,改用strutstestcase,发现主要有cactus approach 与 ...
下一页 摘要:1.1 数据库移植注意事项
1.1.1 取前n条记录
sql server:
select top n * from xtable
oracle:
select * from xtable where rownum <=n
db2:
select * from xtable fetch first n rows only
1.1.2 取当前日期
sql server:......