ASP检查指定表的指定字断中是否包含有某个值,支持模糊查找,这里用自定义函数来实现。函数作用:检测数据表中某个字段是否存在某个内容。
函数返回值:若不存在某内容返回false,存在返回true;
函数各个参数说明:
table:需要查找的数据库表名fieldname:字段名称fieldcontent:要查找的字段内容isblur:是否需要模糊匹配,取值0或1ASP模糊查询表中指定字段是否包含指定内容函数代码
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编程之家温馨提醒: 使用本函数前请先包含你的数据库连接文件。版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。