on error resume next iconn.execute("delete from "&table & " where "&column & "=’"&value & "’") if err.errcode<>0 then deleteByid=false exit function end if deleteByid=true end function
’************************************************************* ’ 返回一个词典,用这个词典来装载要添加的对象. public function getdict() set getdict=server.createobject("scripting.dictionary") end function
’************************************************************* ’ 增加新的记录. public function add(obj,table) dim item isql="select * from " & table response.write isql iRs.open isql,iconn,1,3 irs.addnew for each item in obj irs(item)=obj(item) next irs.update irs.close end function
’************************************************************* ’ 得到查询得返回值 public function getquery(sql) iRs.open sql,iconn,1,1 if irs.eof and irs.bof then getquery=null else set getquery=irs |