怎样把数据库结构显示出来的源代码

2016-01-29 18:28 20 1 收藏

怎样把数据库结构显示出来的源代码,怎样把数据库结构显示出来的源代码

【 tulaoshi.com - ASP 】

  通过以上的代码即可显示表的结构,字段类型,长度,自动编号,主健。如果你仔细研究后就可以发现如何远程改变数据库的结构了,祝你好运!

要查看此演示,需要你建立一个数据源,request("table")改为你的表的名字。
<html
<head
<titlemain</title
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"
</head
<body bgcolor="#CCCCCC" text="#000000"
<h2 align="center"<font face="华文新魏"欢迎查看chenyangasp演示程序</font</h2
<p
<%
on error resume next
table=request("table")
//获得表名
if table<"" then
response.write "数据表:"&table
Set primary = con.OpenSchema(adSchemaPrimaryKeys, _
Array(empty, empty, table))
if primary("COLUMN_NAME")<"" then
primarykey=primary("COLUMN_NAME")
end if
primary.close
set primary=nothing
%
</p
<center
<table width="650" border="1" cellpadding="0" cellspacing="0"
<tr bgcolor="#CCCCCC"
<th class="sundog" width="61"
<div align="center"字段</div
</th
<th class="sundog" width="131"
<div align="center"类型</div
</th
<th class="sundog" width="105"
<div align="center"设定大小</div
</th
<th class="sundog" width="69"
<div align="center"允许空值</div
</th
<th class="sundog" width="69"
自动编号
</th
<th class="sundog" width="81"主键</th
</tr
<%sql="select * from ["&table&"] "
set rs=con.execute(sql)
for i=0 to rs.fields.count-1
%
<tr bgcolor="#CCCCCC"
<td class="sundog" height="2" width="61"
<div align="center"<%=rs(i).name%</div
//字段名
</td
<td class="sundog" height="2" width="131"
<div align="center"
<%
field_type=rs(i).type
select case field_type
case adEmpty
typ = "Empty"
case adTinyInt
typ = "TinyInt"
case adSmallInt
typ = "SmallInt"
case adInteger
typ = "Integer"
case adBigInt
typ = "BigInt"
case adUnsignedTinyInt
typ = "UnsignedTinyInt"
case adUnsignedSmallInt
typ = "UnsignedSmallInt"
case adUnsignedInt
typ = "UnsignedInt"
case adUnsignedBigInt
typ = "UnsignedBigInt"
case adSingle
typ = "Single"
case adDouble
typ = "Double"
case adCurrency
typ = "Currency"
case adDecimal
typ = "Decimal"
case adNumeric
typ = "Numeric"
case adBoolean
typ = "Boolean"
case adError
typ = "Error"
case adUserDefined
typ = "UserDefined"
case adVariant
typ = "Variant"
case adIDispatch
typ = "IDispatch"
case adIUnknown
typ = "IUnknown"
case adGUID
typ = "GUID"
case adDATE
typ = "DATE"
case adDBDate
typ = "DBDate"
case adDBTime
typ = "DBTime"
case adDBTimeStamp
typ = "DBTimeStamp"
case adBSTR
typ = "BSTR"
case adChar
typ = "Char"
case adVarChar
typ = "VarChar"
case adLongVarChar
typ = "LongVarChar"
case adWChar
typ = "WChar"
case adVarWChar
typ = "VarWChar"
case adLongVarWChar
typ = "LongVarWChar"
case adBinary
typ = "Binary"

来源:http://www.tulaoshi.com/n/20160129/1505927.html

延伸阅读
标签: 电脑入门
使用wps制作幻灯片的时候,或者office制作幻灯片,通常都是图片文字就完事了,但是有时候必须插入音乐,那样更有效果,不至于单调。但是插入音乐之后,总会出现一个因为的喇叭图标,看上去影响美观,那么我们怎么让这个图标消失呢,隐藏起来。 说到幻灯片,干巴巴的图片,没有背景music也是不行的。加入music更加有意境,但是,插入之后,会有...
DataSet ds=new DataSet(); System.Data.SqlClient.SqlConnection cnn=new System.Data.SqlClient.SqlConnection("server=(local);database=northwind;trusted_connection=yes") ; cnn.Open(); System.Data.SqlClient.SqlCommand cmd=new System.Data.SqlClient.SqlCommand(); cmd.Connection=cnn; cmd.CommandText="Select * from PersonDeta...
标签: SQLServer
正在作一个关于SQL SERVER数据库导入Excel文件的程序,要读取数据库中的列的信息,从网上找了很多资料,终于总结出来比较理想的sql语句,执行后返回的列分别是:表名、列名、列类型、列长度、列描述、是否主键,语句如下: 1 Select Sysobjects.Name As Tb_name, Syscolumns.Name As Col_name, Systypes.Name As Col_type, Syscolumns.L...
数据库中的数据要最终显示给用户,就要使用数据约束控件,比如前面所使用的文本框以及VB所提供的其他普通约束数据控件,VB中还提供了多种高级约束数据控件,其中包括:高级约束数据网格控件(DBGrid)、高级约束列表控件(DBList)和高级约束组合框控件(DBCombo)。在默认的工具箱中,尚未加入这些控件,要使用它们,首先要先引用它们:右键点击工...
标签: Web开发
!--#include file="fget.asp"-- !--#include file="conn.asp"-- html head meta http-equiv="Content-Type" content="text/html; charset=gb2312" titledwww.cn 信息采集/title /head body % Server.ScriptTimeOut=9999999 PageStart=""'抓取开始页 PageEnd=30'抓取结束页 lburl="http://www.tignet.cn/zhaoshang/index.asp?CurPage...

经验教程

571

收藏

73
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部