ASP通过SQL Server Native Client连接数据库示例

ASP通过SQL Server Native Client连接数据库示例

 

 

<%@LANGUAGE = " VBSCRIPT" CODEPAGE = " 65001"% >
<!doctype html >
<html >
<head >
<meta charset = " utf-8" >
<title >ASP SQL  Server Native Client  10 </title >
</head >
 
<body >
<%
Response. Write( " abc")
% >
<br/ >
 
<%
Dim Conn, ConnStr
Set Conn  =  Server. CreateObject( " Adodb.Connection")
 
' sql server 2008SQL Server Native Client 10.0,  SQLNCLI10'
' sql server 2005SQL Server Native Client 9.0, SQLNCLI'
' SQLNCLIxx,11,12,NativeClient SQL Server2000  DataTypeCompatibility=80; '
 
'  '
 
ConnStr  = " Provider=SQLNCLI10;Server=localhost\SQLExpress;Database=dd2014;Uid=sa;Pwd=666666;"
' '
 
Conn.Open ConnStr
 
Dim Sql, Rs
Set Rs  =  Server. CreateObject( " Adodb.RecordSet")
Sql  =  " SELECT TOP 3 id,title FROM hellose_table ORDER BY id DESC"
 
 
Rs.Open Sql,Conn, 1, 1
 
Dim i
=  1
 
Response. Write( " count:" &Rs.recordcount & " <br/>")
 
While  Not Rs.EOF
     
    response. Write(i & " ." & Rs( " id") & "  -- " & Rs( " title") & " <br/>")
    Rs.MoveNext
    = i  +  1
Wend
 
 
% >
</body >
</html >
 
 
 

参考网址:
http://msdn.microsoft.com/zh-cn/library/ms131291.aspx
http://msdn.microsoft.com/zh-cn/library/ms130978.aspx

你可能感兴趣的:(SQL Server)