摘要: 游标的作用: 主要是用查询出来的数据集做循环的时候用到! -- create table test -- ( -- id int identity(1,1) primary key, -- name varchar(50) -- ) declare @id int declare @name v... 阅读全文
posted @ 2009-08-30 23:57 zxlin25 阅读(253) 评论(1) 推荐(0) 编辑
摘要: use qswl_cjwz declare @a int set @a=5 if @a>9 print 'this num more than 9' else print 'this num less than 9' =====================================... 阅读全文
posted @ 2009-08-30 23:37 zxlin25 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 1:after you, 2: I just could’t help it 我就是忍不住,      I was deelpy moved by the film and i cried and cried.I just could’t help it. 3: Don’t take it to heart.     T... 阅读全文
posted @ 2009-08-30 14:08 zxlin25 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 抽象类具有以下特性: 抽象类不能实例化。 抽象类可以包含抽象方法和抽象访问器。 不能用 sealed(C# 参考)修饰符修改抽象类,这意味着抽象类不能被继承。 从抽象类派生的非抽象类必须包括继承的所有抽象方法和抽象访问器的实实现。 在方法或属性声明中使用 abstract... 阅读全文
posted @ 2009-08-30 00:16 zxlin25 阅读(127) 评论(0) 推荐(0) 编辑