任何人都可以請指導我如何將Visual Basic 2008連接到SQL Server 2008數據庫?我很困惑什麼是最好的做法,當涉及到這一點。如何將visual basic 2008連接到sql server 2008?
1
A
回答
1
有很多種方法。然而,這是使用.net庫最簡單的一種。
- 您連接到數據庫使用的服務器,數據庫和用戶名和密碼,
- 你發出一個SQL命令
- 你收集的結果在一個SqlDataReader
- 你迭代在讀者的結果
- 你清理這些資源。
來源:How to ADO.NET SqlDataReader
Imports System.Data.SqlClient
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim connectionString As String
Dim sqlCnn As SqlConnection
Dim sqlCmd As SqlCommand
Dim sql As String
' Use this first connection string if using windows auth
' connectionString = "Data Source=ServerName;Initial Catalog=DatabaseName;Integrated Security=True"
connectionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"
sql = "Your SQL Statement Here , like Select * from product"
sqlCnn = New SqlConnection(connectionString)
Try
sqlCnn.Open()
sqlCmd = New SqlCommand(sql, sqlCnn)
Dim sqlReader As SqlDataReader = sqlCmd.ExecuteReader()
While sqlReader.Read()
MsgBox(sqlReader.Item(0) & " - " & sqlReader.Item(1) & " - " & sqlReader.Item(2))
End While
sqlReader.Close()
sqlCmd.Dispose()
sqlCnn.Close()
Catch ex As Exception
MsgBox("Can not open connection ! ")
End Try
End Sub
End Class
0
相關問題
- 1. Visual Studio 2008不連接到SQL Server 2008
- 2. VB2010:連接到SQL Server 2008
- 3. asp.net連接到sql server 2008
- 4. 如何在Windows Server 2008上將SQL Server 2008與IIS 7連接
- 5. JDBC連接到SQL Server 2008
- 6. 如何連接到SQL Server 2008
- 7. 如何CakePHP的連接到SQL Server 2008
- 8. 將SQL Server 2008連接到Outlook日曆?
- 9. 將Reporting Services 2005SP2連接到SQL Server 2008
- 10. 將python 3.3連接到microsoft sql server 2008
- 11. 將sql server 2008 r2連接到netbeans
- 12. 將Web API連接到SQL Server 2008
- 13. 將JIRA連接到SQL Server 2008
- 14. visual basic .NET連接到sql server compact 3.5
- 15. Visual Studio 2008與Sql Server 2005的連接
- 16. C++ ODBC SQL Server 2008連接
- 17. 如何從VS 2008連接到SQL Server 2008
- 18. SQL Server 2008加密連接
- 19. SqlDatasource連接到SQL Server 2008中的ASP.NET
- 20. 將Visual Studio 2010中的ASP.NET網站連接到SQL Server 2008
- 21. 在SQL Server連接表2008
- 22. SQL Server 2008連接問題
- 23. 從C#連接到SQL Server 2008#
- 24. JDBC連接SQL Server 2008中
- 25. 遠程連接到SQL Server 2008 sp2
- 26. 無法連接到SQL Server 2008 R2
- 27. SQL Server 2008 R2 VB.net連接
- 28. Visual Basic 2008
- 29. 如何將SQL Server 2008 R2數據庫還原到SQL Server 2008?
- 30. 如何連接的Microsoft SQL Server 2008 R2
你需要做一個教程在VB.net和SQL服務器 - 有數以百萬計在網上(如例子中,我發現了以下)。 – 2012-01-02 11:15:44