asp 格式化sql中的like字符串
更新时间:2007年08月08日 11:52:20 作者:
<%
'******************************
'函数:formatQueryStr(str)
'参数:str,SQL语句
'作者:阿里西西
'日期:2007/7/13
'描述:格式化sql中的like字符串
'示例:<%=formatQueryStr(str)%>
'******************************
function formatQueryStr(str)
dim nstr
nstr = str
nstr = replace(nstr,chr(0),"")
nstr = replace(nstr,"'","''")
nstr = replace(nstr,"[","[[]")
nstr = replace(nstr,"%","[%]")
formatQueryStr = nstr
end function
%>
'******************************
'函数:formatQueryStr(str)
'参数:str,SQL语句
'作者:阿里西西
'日期:2007/7/13
'描述:格式化sql中的like字符串
'示例:<%=formatQueryStr(str)%>
'******************************
function formatQueryStr(str)
dim nstr
nstr = str
nstr = replace(nstr,chr(0),"")
nstr = replace(nstr,"'","''")
nstr = replace(nstr,"[","[[]")
nstr = replace(nstr,"%","[%]")
formatQueryStr = nstr
end function
%>
相关文章
ASP 包含文件中的路径问题和使用单一数据库连接文件的解决方案
全站只需要用一个数据库连接文件的实现函数代码2009-03-03


最新评论