当前位置: 首页 > 图文教程 > 网络编程 > ASP > 把字符串转换成数据库SQL语句格式

ASP
如何把ASP编写成DLL(3)
ASP实用大全-实战ASP(1)
ASP实用大全-实战ASP(2)
ASP实用大全-实战ASP(3)
ASP实用大全-实战ASP(4)
ASP实用大全-实战ASP(5)
ASP实用大全-实战ASP(6)
ASP实用大全-实战ASP(7)
ASP实用大全-实战ASP(8)
ASP中Cookie使用指南
Flash和Asp数据库的结合应用
asp模块化分页制作详解
ASP中使用SQL语句操作数据库
浅谈ASP中Web页面间的数据传递
一个采集入库生成本地文件的几个FUCTION
微软建议的ASP性能优化28条守则(1)
微软建议的ASP性能优化28条守则(2)
微软建议的ASP性能优化28条守则(3)
微软建议的ASP性能优化28条守则(4)
微软建议的ASP性能优化28条守则(5)

ASP 中的 把字符串转换成数据库SQL语句格式


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 312 ::
收藏到网摘: n/a

复制代码 代码如下:

'把字符串转换成数据库SQL语句格式
'-------------------------------------------------
Function AllStr2Database(str,strType)
Dim strTemp:strTemp=str
Select Case strType
Case ""
Case "num"
strTemp = Clng(strTemp)
Case "string" '无Trim
strTemp = Replace(strTemp, "'", "''")
Case "str_br" '无Trim,把回车转换为<br>,一般用于多行文本输入
strTemp = Replace(Replace(strTemp, "'", "''"), VbCrlf, "<br>")
Case "str_trim" 'Trim
strTemp = Replace(Trim(strTemp), "'", "''")
Case "nums"
strTemp = Trim(strTemp)
strTemp = Replace(strTemp, ")", "")
strTemp = Replace(strTemp, "(", "")
strTemp = Replace(strTemp, "'", "")
strTemp = Replace(strTemp, ";", "")
strTemp = Replace(strTemp, " ", "")
strTemp = Replace(strTemp, "or", "")
strTemp = Replace(strTemp, "and", "")
strTemp = Replace(strTemp, "delete", "")
strTemp = Replace(strTemp, "select", "")
strTemp = Replace(strTemp, "exec", "")
strTemp = Replace(strTemp, "update", "")
strTemp = Replace(strTemp, "select", "")
Case "strings"
Case Else
End Select
AllStr2Database = strTemp
End Function