Make Www.Edu-cn.Com Your Home Page!
用户名: 密码: 验证码: 注册
  当前位置: > 中国教程网>数据库>DB2> 用表单来提交sql(转)3

用表单来提交sql(转)3

作者:   来源:中国教程网   点击:   日期:2007-04-02
列表 D: buildSQLInsert函数的最终版。


<%
function buildSQLInsert( targetTable, omitFields)
         iStr = "insert into " & targetTable & " "
         vStr = "values ("
         nStr = "("
          在表单集合中循环,并建立起SQL语句的组成部分
         for each x in request.form
                  fieldName = uCase(x)
                   判断字段是否被省略?
                  if inStr(uCase(omitFields),x) = 0 then edu-cn.com
                       fieldData = replace(request.form(fieldName), _
                                "", "")
                        如果没有数据,就插入 NULL
                       if trim(fieldData) = "" then
                                fieldData = "NULL"
                                vStr = vStr & fieldData & ", " www.edu4u.com.cn
                                nStr = nStr & fieldName & ", "
                       else
                                typeDelimPos = inStr(fieldName, "_")
                                if typeDelimPos = 0 then
                                      是文本字段

www.edu-cn.com


                                      建立字段名列表
                                     nStr = nStr & fieldName & ", "
                                     vStr = vStr & "" & fieldData & ", "
                                else
                                      字段是其它类型
中国教程网

                                     fieldType = left(fieldName, typeDelimPos - 1)
                                     fieldName = mid(fieldName, typeDelimPos + 1)
                                      把字段名加入名称列表
                                     nStr = nStr & fieldName & ", "
中国论文网

                                      把字段类型变成大写以确保匹配
                                     select case uCase(fieldType)
                                              case "NUM"
                                              vStr = vStr & fieldData & ", "
www.edu-cn.com

                                              把不明类型按文本型处理
                                              case else
                                              vStr = vStr & "" & fieldData & ", "
                                     end select

中国教程网


                                end if       
                       end if
                  end if
         next

          把结尾的", " 从我们建立的字符串中去掉
         vStr = left(vStr, len(vStr) - 2) & ")"
         nStr = left(nStr, len(nStr) - 2) & ") "

          把SQL语句整合起来
         buildSQLInsert = iStr & nStr & vStr 漂亮MM女性网
end function


if trim(request("fName")&request("lname")&request("age")) <> "" then
         response.write( buildSQLInsert("") & "         response.write( buildSQLInsert("NUM_AGE") & "
")
         response.write( buildSQLInsert("lname,fname") & "
")
         response.write( buildSQLInsert("mycheckbox,fname") &
         =<"else
%>




Gimme your:

First Name:
Last Name:
Age:




AOE3 STUDIO



<%
end if
  %>




列表 D: buildSQLInsert函数的最终版。


<%
function buildSQLInsert( targetTable, omitFields)
         iStr = "insert into " & targetTable & " "
         vStr = "values ("
         nStr = "("
          在表单集合中循环,并建立起SQL语句的组成部分
         for each x in request.form
                  fieldName = uCase(x)
                   判断字段是否被省略?
                  if inStr(uCase(omitFields),x) = 0 then
                       fieldData = replace(request.form(fieldName), _
edu4u.com.cn

                                "", "")
                        如果没有数据,就插入 NULL
                       if trim(fieldData) = "" then
                                fieldData = "NULL"
                                vStr = vStr & fieldData & ", "
                                nStr = nStr & fieldName & ", " edu4u.com.cn
                       else
                                typeDelimPos = inStr(fieldName, "_")
                                if typeDelimPos = 0 then
                                      是文本字段
                                      建立字段名列表 AOE3 STUDIO
                                     nStr = nStr & fieldName & ", "
                                     vStr = vStr & "" & fieldData & ", "
                                else
                                      字段是其它类型
                                     fieldType = left(fieldName, typeDelimPos - 1) www.edu-cn.com
                                     fieldName = mid(fieldName, typeDelimPos + 1)
                                      把字段名加入名称列表
                                     nStr = nStr & fieldName & ", "
                                      把字段类型变成大写以确保匹配 中国论文网
                                     select case uCase(fieldType)
                                              case "NUM"
                                              vStr = vStr & fieldData & ", "
                                              把不明类型按文本型处理 edu4u.com.cn
                                              case else
                                              vStr = vStr & "" & fieldData & ", "
                                     end select
                                end if       
中国教育网

                       end if
                  end if
         next

          把结尾的", " 从我们建立的字符串中去掉
         vStr = left(vStr, len(vStr) - 2) & ")"
         nStr = left(nStr, len(nStr) - 2) & ") "

          把SQL语句整合起来
         buildSQLInsert = iStr & nStr & vStr
end function


if trim(request("fName")&request("lname")&request("age")) <> "" then
         response.write( buildSQLInsert("") & "         response.write( buildSQLInsert("NUM_AGE") & " 漂亮MM女性网
")
         response.write( buildSQLInsert("lname,fname") & "
")
         response.write( buildSQLInsert("mycheckbox,fname") &
         =<"else
%>




Gimme your:

First Name:
Last Name:
Age:






<%
end if
  %>

edu-cn.com



文章评论】 【收藏本文】 【推荐好友】 【打印本文】 【论坛讨论

   最新文章:
·用表单来提交sql(转)3(04-02)
·MySQL数据库结构和数据的导出和导入(04-02)
·常见数据库系统之比较 - DB2数据库(04-02)
·数据库复制技术在Internet上的实现(04-02)
·DB2常用傻瓜问题1000问(之五)(04-02)
·将数据库中的数据通过client控件显示(04-02)
·用SQL Server为Web浏览器提供图像((04-02)
·用表单来提交sql(转)2(04-02)
·IBM DB2 日常维护汇总(六)(04-02)
·Microsoft SQL Server 7.0 备份及恢(04-02)
   相关文章:
·用表单来提交sql(转)3 ·MySQL数据库结构和数据的导出和导入
·用表单来提交sql(转)2 ·常见数据库系统之比较 - DB2数据库
·用表单来提交sql(转)1 ·用SQL Server为Web浏览器提供图像(四)(
·用SQL Server为Web浏览器提供图像(三)( ·用SQL Server为Web浏览器提供图像(二)(
·用SQL Server为Web浏览器提供图像(一)( ·OSQL工具在DOS下的操作方式

   文章评论:(0条)
  
用户名: 新注册) 密码: 匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。

 §最新评论:

  责任编辑:中国教程网