ASP检查指定表的指定字断中是否包含有某个值,支持模糊查找,这里用自定义函数来实现。函数作用:检测数据表中某个字段是否存在某个内容。
函数返回值:若不存在某内容返回false,存在返回true;
函数各个参数说明:
table:需要查找的
数据库表名fieldname:字段
名称fieldcontent:要查找的字段
内容isblur:是否需要模糊匹配,取值0或1
Function CheckExist(table,fieldname,fieldcontent,isblur)CheckExist=falseIf isblur=1 Thenset rsCheckExist=conn.execute("select * from "&table&" where "&fieldname&" like '%"&fieldcontent&"%'")elseset rsCheckExist=conn.execute("select * from "&table&" where "&fieldname&"= '"&fieldcontent&"'")End ifif not (rsCheckExist.eof and rsCheckExist.bof) then CheckExist=truersCheckExist.closeset rsCheckExist=
nothingEnd Function编程之家温馨提醒: 使用本
函数前请先包含你的
数据库连接
文件。