把字符串转换成数据库SQL语句格式
程序员文章站
2022-04-14 20:33:53
复制代码 代码如下:'把字符串转换成数据库sql语句格式 '------------------------------------------------- functi...
复制代码 代码如下:
'把字符串转换成数据库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
上一篇: js+asp总结
下一篇: ubuntu多版本php切换
推荐阅读
-
sql语句中能否直接把截取的字符串当作where条件
-
通过SQL语句直接把表导出为XML格式
-
通过SQL语句直接把表导出为XML格式
-
Python实现把json格式转换成文本或sql文件
-
SQL Server把某个字段的数据用一条语句转换成字符串
-
Python实现把json格式转换成文本或sql文件
-
SQL Server把某个字段的数据用一条语句转换成字符串
-
C#实现把String字符串转化为SQL语句中的In后接的参数
-
利用UltraEdit快速将SQL语句转换为符合VB.NET语法格式字符串 VBVB.NET.netSQLC
-
C#中利用LINQ to XML与反射把任意类型的泛型集合转换成XML格式字符串的方法