我嘗試了很多,但我無法處理這個問題。我最後2天浪費了沒有任何重要結果。希望我會在這裏得到一些幫助。使用asp連接到SQL Server 2008數據庫
我想用ASP連接到SQL Server 2008數據庫。我安裝了SQL Server 2008,創建了一個數據庫,但我無法使用asp代碼連接到該數據庫。我可以在Visual Web Developer中看到數據庫,也可以使用Visual Web Developer的添加連接嚮導通過asp.net進行連接,但我不想使用添加連接嚮導。我想寫我的asp代碼連接到記事本中的SQL Server數據庫。我的IIS正在工作,我能夠運行asp代碼來訪問其他數據庫,如MS訪問數據庫,但我無法訪問SQL Server數據庫。
SQL Server Management Studio中的對象資源管理器中顯示:
localhost\SQLSERVER3(SQL Server 10.0.1600-RAJ-PC\raj)
數據庫
examples
tables
System Tables
dbo.cars
columns
id(PK,int,not null)
name(varchar(50),null)
你可以看到所附jpg圖片在SQL Server及其數據庫。我想連接到示例數據庫,然後想要訪問汽車表。
請幫幫我。
修訂
這裏是我的代碼:
<html>
<head>
<title>Guestbook</title>
</head>
<body bgcolor="white" text="black">
<%
'Dimension variables
Dim adoCon 'Holds the Database Connection Object
Dim rsGuestbook 'Holds the recordset for the records in the database
Dim strSQL 'Holds the SQL query for the database
'Create an ADO connection odject
Set adoCon = Server.CreateObject("ADODB.Connection")
'Set an active connection to the Connection object using a DSN-less connection
adoCon.Open "ODBC;Driver={SQL Native Client};" & _
"Server=localhost\SQLSERVER3;" & _
"Database=examples;" & _
"Uid=raj;" & _
"Pwd=love1987"
'Set an active connection to the Connection object using DSN connection
'adoCon.Open "DSN=guestbook"
'Create an ADO recordset object
Set rsGuestbook = Server.CreateObject("ADODB.Recordset")
'Initialise the strSQL variable with an SQL statement to query the database
strSQL = "SELECT name FROM dbo.cars;"
'Open the recordset with the SQL query
rsGuestbook.Open strSQL, adoCon
'Loop through the recordset
Do While not rsGuestbook.EOF
'Write the HTML to display the current record in the recordset
Response.Write ("<br>")
Response.Write (rsGuestbook("Name"))
'Response.Write ("<br>")
'Response.Write (rsGuestbook("Comments"))
'Response.Write ("<br>")
'Move to the next record in the recordset
rsGuestbook.MoveNext
Loop
'Reset server objects
rsGuestbook.Close
Set rsGuestbook = Nothing
Set adoCon = Nothing
%>
</body>
</html>
C#或VB?你的代碼到目前爲止看起來如何? –
2件事。 1。您是否正在尋求ASP(經典)或ASP.NET的幫助。 2.你有沒有一個你正在使用的代碼樣本來嘗試連接到數據庫以顯示你已經嘗試了什麼? –
啊,你改變了默認實例嗎? – ApolloSoftware