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

查询分析

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 Tabl

时间: 2024-10-30 21:30:03

ASP做查询分析器(Query Analyzer)(III)的相关文章

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

查询分析 DataTypeLib.asp <%Function selectIdentity(strConnect,strTable,strColumn)Dim objConn, objRS, strFieldName, strFieldType, arrData, intRowCounter, intColCounter, strFieldValueDim intUBoundRow, intUBoundCol, strSQLIDSet objConn=Server.CreateObject(&qu

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

查询分析 createTable.asp <%@ LANGUAGE = VBScript %><% Option ExplicitResponse.Buffer = TrueResponse.ContentType = "text/html; charset=iso-8859-1" '--------------------------------------------------------------'--- Declarations'-------------

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

查询分析 sqlultimate.asp--Part A <%@ LANGUAGE = VBScript %><% Option ExplicitResponse.Buffer = TrueSession.Timeout = 1 Response.ContentType = "text/html; charset=iso-8859-1" '--------------------------------------------------------------'--

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

查询分析 sqlultimate.asp--Part B '   ++++++++++++++   FK Sub  +++++++++++++++++SUB FK(xdbname, xuserid, xpassword )Dim strConn,conntemp,rsSchema,PKT,PKC,FKT,FKCConst adSchemaForeignKeys = 27strConn =  "Provider=SQLOLEDB.1;Data Source="&strServer

使用查询分析器调整SQL服务器脚本

查询分析|服务器|脚本 我喜欢把SQL服务器所捆绑的工具看作是倒金字塔型的,诊断和检查一般问题的工具在顶端,寻找和诊断问题具体区域的工具在底部.除了提供一种编写SQL脚本的便捷方式之外,在你需要解决特定SQL脚本里明确问题的时候,查询分析器(Query Analyzer)还是所需要使用的资源.如果你需要指出哪个查询正在保持着某个特定表格的锁定状态,你也会希望使用查询分析器. 查询分析器的关键诊断特性是它能够显示某个查询的执行计划.这个执行计划会向你提供各种类型的有用信息,例如在查询的执行期间如何

使用查询分析器调整SQL服务器

我喜欢把SQL服务器所捆绑的工具看作是倒金字塔型的,诊断和检查一般问题的工具在顶端,寻找和诊断问题具体区域的工具在底部.除了提供一种编写SQL脚本的便捷方式之外,在你需要解决特定SQL脚本里明确问题的时候,查询分析器(Query Analyzer)还是所需要使用的资源.如果你需要指出哪个查询正在保持着某个特定表格的锁定状态,你也会希望使用查询分析器.查询分析器的关键诊断特性是它能够显示某个查询的执行计划.这个执行计划会向你提供各种类型的有用信息,例如在查询的执行期间如何以及何时使用或者不使用索引

SQL Query Analyzer

19.3.1 SQL Query Analyzer 简介    SQL Query Analyzer 是一个图形化的管理工具,主要用于编写.测试Transact-SQL 语句.批处理.系统管理员和开发者通过SQL Query Analyzer 能够同时执行多个查询.查看查询结果.分析查询计划,从而了解如何提高查询执行的性能.从SQL Server Enterprise Manager 可以将其启动.SQL Query Analyzer 提供了以下特性: 为编写Transact-SQL 语句提供了

数据库的Query Analyzer

数据|数据库 很多人一定用过Query Analyzer,这个工具的功能如何如何,就不用我说了,这次给大家介绍下Web下的Query Analyzer,界面如图1,使用ASP写的. (图1) 源程序如下: <%dim conn dim connstr on error resume nextif request("selectdb")="mdb" thenif request("dbname")<>"" th

响应式设计的思考:媒体查询(media query)

文章简介:媒体查询与http请求 Jason Grigsby发表了篇文章,<CSS Media Query for Mobile is Fool's Gold>对媒体查询(media query)吐槽,大意是在移动设备上使用媒体查询会造成很多资源的浪费--浏览器请求到很多用不到的图片等资源,然后写了一些测试用例测试一些可用方法.然后Tim Kadlec写了篇<Media Query & Asset Downloading Results>,用js自动化的测试了Jason G