首页 相关文章 显示sql数据库所有表的名称(带删除功能)

显示sql数据库所有表的名称(带删除功能)

<%
' Define your sql info here
strSQLDSN = "xxxx"
strSQLUsername = "sa"
strSQLPassword = ""

' This is where we connect to our sql server
Set adoConn = Server.CreateObject("ADODB.Connection")
ConnectionString = "dsn=" & strSQLDSN & ";uid=" & strSQLUsername & ";pwd=" & strSQLPassword & ""
adoConn.Open ConnectionString
Set adoRS = Server.CreateObject("ADODB.Recordset")

' now we will just difine a couple things
showblank = " "
shownull = "-null-"

If Request.QueryString("action") = "del" The...[ 查看全文 ]

2016-01-29 标签:

显示sql数据库所有表的名称(带删除功能)的相关文章

手机页面
收藏网站 回到头部