ASP用DSN连接数sql数据库
?現(xiàn)有數(shù)據(jù)源DSN(test)用戶名為z;密碼為123456;有一個(gè)test數(shù)據(jù)庫(kù)理由一個(gè)叫table的表,表中有三個(gè)列:用戶名;×××號(hào)碼;電話號(hào)碼,怎樣該表中的輸出所有字段?
下面的代碼正確嗎?請(qǐng)多指教
<html>
<head>
<title>列出所有列</tiltle>
</head>
<body>
<%
Dim Conn,Rs,Str
set Conn=server.createobject("Adodb.Connection")
Conn.open"DSN=test;UID=z;PWD=123456"
Set Rs=server.createobject("Adodb.Recordset")
Str="select*from table"
Rs.open Str,conn,3,3
If not Rs.Eof then
Response.Write("<table border=1>")
For i=1 To Rs.recordcount
If not Rs.Eof
Response.Write("<tr>")
Response.Write("<td>")
Response.Write("Rs("用戶名")")
Response.Write("</td>")
Response.Write("<td>")
Response.Write("Rs("×××號(hào)碼")")
Response.Write("</td>")
Response.Write("<td>")
Response.Write("Rs("電話號(hào)碼")")
Response.Write("</td>")
Response.Write("</tr>")
Rs.MoveNext
End If
Next
Response.Write("</table>")
End If
Rs.close
set Rs=nothing
%>
</head>
</html>
轉(zhuǎn)載于:https://blog.51cto.com/2963546/560093
總結(jié)
以上是生活随笔為你收集整理的ASP用DSN连接数sql数据库的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: Servlet - Listener、F
- 下一篇: Spring 实践 -拾遗