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

查询分析

createTable.asp

<%@ LANGUAGE = VBScript %>
<%
Option Explicit
Response.Buffer = True
Response.ContentType = "text/html; charset=iso-8859-1"

'--------------------------------------------------------------
'--- Declarations
'--------------------------------------------------------------

Dim intNumColumns, strTableName, intCurrentColumn, intTableNum

Dim strTable, booltableinfo,strsqlserver,strLog_in,strUser_password

'--------------------------------------------------------------
'--- Initialization
'--------------------------------------------------------------

strTable = request("choosetable")
booltableinfo = request("booltableinfo")
strsqlserver = request("sqlserver")
strLog_in = request("log_in")
strUser_password = request("user_password")

intNumColumns = request("howMany")
strTableName = request("tableName")
intTableNum = 1

'--------------------------------------------------------------
'--- Functions
'--------------------------------------------------------------

'--------------------------------------------------------------
Sub OutputTableHeader()

response.write("<tr bgcolor=""#ebf498"">" & vbCrLf)
response.write("<td><b>Column Name</b></td>" & vbCrLf)
response.write("<td><b>Data Type</b></td>" & vbCrLf)
response.write("<td><b>Size</b></td>" & vbCrLf)    
response.write("<td><b>Null?</b></td>" & vbCrLf)
response.write("<td><b>Unique?</b></td>" & vbCrLf)
response.write("<td><b>Primary Key</b></td>" & vbCrLf)    
response.write("</tr>" & vbCrLf & vbCrLf)

End Sub

'--------------------------------------------------------------

Sub OutputFieldRow(strTableName,intFieldNum)

    response.write("<tr>" & vbCrLf)    
    response.write("<td><input type=text name=colum" & intFieldNum & "></td>" & vbCrLf)
    response.write("<td><select size=1 name=dtype" & intFieldNum & ">" & vbCrLf)    
    If intFieldNum = 1 Then      
      response.write("<option value=""int IDENTITY(1,1)"">Identity</option>" & vbCrLf)    
    End If
    response.write("<option value=varchar>varchar</option>" & vbCrLf)
    response.write("<option value=text>text</option>" & vbCrLf)
    response.write("<option value=datetime>datetime</option>" & vbCrLf)
    response.write("<option value=money>money</option>" & vbCrLf)
    response.write("<option value=smallint>smallint</option>" & vbCrLf)
    response.write("<option value=int>int</option>" & vbCrLf)
    response.write("<option value=real>real</option>" & vbCrLf)
    response.write("<option value=float>float</option>" & vbCrLf)
    response.write("<option value=bit>bit</option>" & vbCrLf)
    response.write("<option value=varbinary>varbinary</option>" & vbCrLf)
    response.write("<option value=image>image</option>" & vbCrLf)
    response.write("</select></td>" & vbCrLf)
    response.write("<td><input type=text size=3 name=size" & intFieldNum & "></td>" & vbCrLf)
    response.write("<td><select name=nullbox" & intFieldNum & ">" & vbCrLf)     
    response.write(" <option value=""DISALLOW NULL"">Not Null</option>" & vbCrLf)     

时间: 2024-09-12 14:53:23

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

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 addF

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)(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