⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 index.asp

📁 100个经典的ASP程序
💻 ASP
字号:
<html>
<head>
<title>数据库的结构显示</title>
</head>
<body bgcolor=Peachpuff>
<p align=center><font face="华文行楷" size=+2><STRONG>sysobjects表结构的显示</STRONG></font><p>
<table border="1" align=center width=520 bgcolor=LightSteelBlue>
<% 
set rs=server.createobject("adodb.recordset") 
set rstemp=server.createobject("adodb.recordset") 
conn="provider=Sqloledb;server=username;uid=USERID;pwd=PASSWORD;database=pubs"
'显示sysobjects的表结构
sql="select id from sysobjects where name='sysindexes'" 
rs.open sql,conn,1,1
dim IID 
if rs.EOF then
	Response.Write "要显示的表不存在!"
else
	IID=rs("id")
SQLTEMP="SELECT * FROM [syscolumns] WHERE id ='"&IID&"' "
rstemp.Open sqltemp,conn,1,1
%>
<tr>
<td width=180>字段名称</td>
<td width=120>字段类型</td>
<td width=100>字段长度</td>
<td width=120>是否充许为空</td>
<%do while not rsTEMP.EOF%>
<TR>
<tr>
<td><%=rstemp("name")%></td>
<td><%
xtype=rstemp("xtype")
set rstemp1=server.createobject("adodb.recordset") 
sql="select name from [systypes] where xtype='"&xtype&"'"
rstemp1.Open sql,conn,1,1
Response.Write rstemp1("name")
rstemp1.Close
%></td>
<td><%=rstemp("length")%></td>
<td><%=rstemp("isnullable")%></td>
</tr>
<%
rsTEMP.MoveNext
loop
end if
rs.Close
rstemp.Close
set rstemp=nothing
set rs=nothing 
set conn=nothing
%>
</TABLE> 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -