• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

ASP做查询分析器(Query Analyzer)(III)

发布: 2007-6-30 18:56 | 作者: admin | 来源: | 查看: 29次 | 进入软件测试论坛讨论

领测软件测试网 sqlultimate.asp--Part C

<html>
<head>
<title>BuildSQL</title>
<!--#include file="DataTypeLib.asp" -->    

<script language="JavaScript1.2" type="text/javascript">

<!--
    function addField(field)     {
       strField = document.sqlForm.strSQL.value;
       strField = strField + " [" + field + "]";
       if(confirm("Add " + field + "?"))
             document.sqlForm.strSQL.value = strField;      
    }
//-->

</script>

</head>

<body bgcolor="#f4e1d2">

<%
If request("createTable") <> "Create Table" Then
   response.write("<form name=""sqlForm"" action=""sqlultimate.asp"" method=""POST"">" & vbCrLf)
End If

If request("createTable") = "Create Table" Then
   call createTable()
ElseIf strServer = ""  Or request("showConnectdb") = "Connect" Then    
%>
<h2 align=center>Log into Database Server</h2>
   <p align=center>
            Server:        <input name="sqlserver" type="text" value="<%= strServer %>"><br>
            User Name: <input name="log_in" type="text" value="<%= strUserID %>"><br>
            Password:   <input name="user_password" type="password" value="<%= strPassword %>"><br><br>
              <input type=submit>
    </p>
<%
ElseIf request("savequery") = "Save Query" and strSQL <> "" Then
   call saveQuery(strSQL,request("booltableinfo"))
Else
%>    
<h3 align=center>Server: <font color=Purple><%= strServer %></font>,
Database is: <font color=Purple><%= strDB %></font>,
User is: <font color=Purple><%= strUserID %></font></h3>
      <table border="0" cellspacing="0" width="100%">
        <tr>
         <td valign=top bgcolor=#f0f3b1 width="60%"><b>SQL Query</b></td>

         
         </td>
         <td valign=top bgcolor=#cbf3bb width="40%"><b>Work Space</b>
         </td>
        </tr>
<tr><td  bgcolor=black colspan=2>        
<%
If strDB <> "" Then
    call getIdentity(strServer,strDB,strUserID, strPassword)
    call tableDropDown(strDB,strUserID, strPassword)
%>

   <select name=sqlType>
   <option value="Select" <%= strQOption1 %>> Select</option>
   <option value="Insert" <%= strQOption2 %>> Insert</option>
   <option value="Update" <%= strQOption3 %>> Update</option>
   </select>         
   
   <input type=submit name="createSQLStatement" value="Create"> 
   <input type=submit name="createTable" value="Create Table">
<%
   If request("createSQLStatement") = "Create" Then
         call makeSQLStatement(strTableName,strCreate)
   End If
     
  If request("createTable")= "Make Create Table Statement" Then
       strSQL = returnSQLCreateTableString()
  End If
  
End If
%>                 
        </td></tr><tr>        
            <input name="booltableinfo" type="hidden" value="<%= boolTableInfo %>">        
            <input name="sqlserver" type="hidden" value="<%= strServer %>">
            <input name="log_in" type="hidden" value="<%= strUserID %>">
            <input name="user_password" type="hidden" value="<%= strPassword %>">
            <td width="60%"><textarea name="strSQL" rows="12" cols="55" wrap="soft"><%=strSQL%></textarea></td>
            <td width="40%"><textarea name="strClip" rows="12" cols="35" wrap="soft"><%=strClip%></textarea></td>

        </tr>
    </table>


    <input type="submit" name="submitquery" value="Submit Query"> 
    <input type="submit" name="savequery" value="Save Query"> 
<%
  If request("saveMyQuery") = "Save" Or request.cookies("isgood") <> "" Then
     Call makeQueryOptionBox(strSQL,strquery)
  End If
%>    
    <input type="submit" name="selectdb" value="Select DB"> 

<%
call showdatabases(strConnect)
  If strUserID <> "" Then  %>
  <input type="submit" name="tableinfo" value="Table Info"> 
  <input type="submit" name="showConnectdb" value="Connect"><br>
  
<%
End If
  If boolTableInfo <> "True" Then
     Response.write("</form>" & vbCrLf)
  ElseIf boolTableInfo = "True" Then
       call displayTableInfo(strDB,strUserID, strPassword)
     Response.write("</form>" & vbCrLf)
     call FK(strDB,strUserID, strPassword)
  End If
  
  If strSQL <> "" And strLoad <> "Load" And request("saveMyQuery") <> "Save" And request("createSQLStatement") = "" And request("tableinfo") = "" And request("createTable") <> "Make Create Table Statement"  Then    
     strSQL = replace(strSQL,vbCrLf,"")
     strQueryType = trim(UCase(mid(strSQL,1,5)))

  Select Case strQueryType
    Case "DROP"
         executeSQL(strSQL)    
    Case "GRANT"
         executeSQL(strSQL)  
    Case "INSER"
         executeSQL(strSQL)
    Case "UPDAT"
         executeSQL(strSQL)
    Case "DELET"
         executeSQL(strSQL)    
    Case "CREAT"
         executeSQL(strSQL)        
    Case "ALTER"
         executeSQL(strSQL)    
    Case "SELEC"
         displaySQL strSQL, boolTableInfo
    Case Else
         Response.Write(strSQL & "<br>")
           Response.Write("Operation requested not available. Modify the Case statement to allow new query options")
    End Select
  End If
  
End If   
%>
</body>
</html>

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备2023014753号-2
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网