欢迎来到入门教程网!

编程问答

当前位置:主页 > 网络编程 > 编程问答 >

怎样获知数据库的连接属性?

来源:本站原创|时间:2020-01-11|栏目:编程问答|点击:

<%@ Language=VBScript %>

<%

    Option Explicit

    dim objCNN

    dim intCTProps

    dim item

    dim vbCRLF

   

    vbCRLF = chr(10)

    Response.Write "<html><head></head><body>" & vbCRLF

    Response.Write "<p><h3>春风精彩之查看数据库属性</h3></p>" & vbCRLF

    Response.Write vbCRLF

    set objCNN = Server.CreateObject("ADODB.connection")

    objCNN.Open "DSN=VicTest"

   

    Response.Write "<table border=1><tr><td width='10%'>>编号</td>" & vbCRLF

    Response.Write "<td width='70%'>>Name</td><td width='20%'>></td></tr>" & vbCRLF

   

    intCTProps = 0

    for each item in objCNN.Properties

        intCTProps = intCTProps + 1

        Response.Write "<tr><td>" & intCTProps & "</td>" & vbCRLF

        Response.Write "<td>" & item.name & "</td>" & vbCRLF

        Response.Write "<td>" & item.value & "</td></tr>" & vbCRLF

    next

    Response.Write "</table>" & vbCRLF

    Response.Write vbCRLF

    Response.Write "</body></html>" & vbCRLF

   

    set objCNN = Nothing

    set intCTProps = nothing

    set item = nothing

    set vbCRLF = nothing

%>

上一篇:没有了

栏    目:编程问答

下一篇:如何验证IP地址?

本文标题:怎样获知数据库的连接属性?

本文地址:https://www.xiuzhanwang.com/a1/bianchengwenda/12035.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有