|
分類:[.NET 全般]
SQLSsrver14.0のテーブルからデータを取り出し、VB2010上のDataGridViewに表示したいのですが、VBプログラムを教えてください。 SQLServerとの接続からお願いします。
DB:Business management system テーブル名:Supplier master code companey_name gojuuon
SQL SERVER認証はこれで合ってますでしょうか?
Public Class Suppliers_master
Private Sub Button_kensaku_Click(sender As System.Object, e As System.EventArgs) Handles Button_kensaku.Click
Dim strConnectSQL As String Dim strSQL As String Dim SQLDA As SqlClient.SqlDataAdapter Dim SQLDS As New DataSet()
strConnectSQL = _ "Server=FSH-025\SQLEXPRESS;" & _ "Initial Catalog=Business management system;" & _ "User ID=*****(伏せます);" & _ "Password="";"
End Sub
End Class
|