- 博客(4)
- 收藏
- 关注
原创 compilation problems
在同事的Eclipse开发环境出现 java.lang.Error: Unresolved compilation problems ;XX cannot be resolved to a type;错误。比较我和同事的代码,在IDE中没有发现有不一样的地方。 编译错误,检查 XX 所属的包,替换成我的包,还是有问题。 重新编译,还没有解决。 后在我打包给我同事的那...
2009-04-14 11:30:32 262
原创 工作项目
function clsPassWordValidate(strPassWord) { this.passWord=strPassWord; this.errorTip=null; this.isSuccess=true; this.clsLengthValidate=clsPassWordValidate$clsLengthValidate; this.cls...
2009-02-18 17:01:06 136
原创 按条件插入多条数据
问题:将一张表中的数据,按照某种条件插入到另外一张表中。思路:原表为:A,目标表:B 可以A表中满足条件的数据加工成一条SQL,再通过执行这些SQL,实现插入数据。例如:select 'insert into tab16(storeid,relateddoctypeid,relateddocstoreid,canonical,alias,fullname,...
2009-01-20 17:56:45 619
原创 javascript面向对象技术基础(五)—感
function Circle(radius) { //定义父类Circle this.radius = radius; } Circle.prototype.area = function() { //定义父类的方法area计算面积 return this.radius * this.radius * 3.14; } function Pos...
2008-12-31 15:09:44 99
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人