SqlDataAdapter.SelectCommand : SqlDataAdapter « System.Data.SqlClient « VB.Net by API

Home
VB.Net by API
1.Microsoft.VisualBasic
2.Microsoft.Win32
3.System
4.System.Collections
5.System.Collections.Generic
6.System.Collections.Specialized
7.System.ComponentModel
8.System.Configuration.ConfigurationSettings
9.System.Data
10.System.Data.Odbc
11.System.Data.OleDb
12.System.Data.OracleClient
13.System.Data.SqlClient
14.System.Diagnostics
15.System.Drawing
16.System.Drawing.Drawing2D
17.System.Drawing.Imaging
18.System.Drawing.Printing
19.System.Drawing.Text
20.System.Globalization
21.System.IO
22.System.IO.IsolatedStorage
23.System.IO.Ports
24.System.Media
25.System.Messaging
26.System.Net
27.System.Net.Sockets
28.System.Reflection
29.System.Runtime.InteropServices
30.System.Runtime.Remoting.Channels
31.System.Runtime.Serialization
32.System.Runtime.Serialization.Formatters.Binary
33.System.Runtime.Serialization.Formatters.Soap
34.System.Security.Cryptography
35.System.Security.Cryptography.X509Certificates
36.System.Security.Permissions
37.System.Security.Principal
38.System.ServiceProcess
39.System.Text
40.System.Text.RegularExpressions
41.System.Threading
42.System.Web
43.System.Web.Mail
44.System.Windows.Forms
45.System.Xml
46.System.Xml.Schema
47.System.Xml.Serialization
48.System.Xml.Xsl
VB.Net
VB.Net Tutorial
VB.Net by API » System.Data.SqlClient » SqlDataAdapter 
SqlDataAdapter.SelectCommand
  

 Imports System
 Imports System.Drawing
 Imports System.Collections
 Imports System.ComponentModel
 Imports System.Windows.Forms
 Imports System.Data
 Imports System.Data.SqlClient

 
Public Class MainClass

    Shared Sub Main(  )
        Application.Run(New ADOForm1() )
    End Sub

   
End Class

  Public Class ADOForm1
     Inherits System.Windows.Forms.Form
     Friend WithEvents DataGrid1 As System.Windows.Forms.DataGrid

     Private components As System.ComponentModel.Container

     ' private System.Data.ADO.ADOConnection myConnection;
     Private myConnection As System.Data.SqlClient.SqlConnection
     Private myDataSet As System.Data.DataSet
     Private myCommand As System.Data.SqlClient.SqlCommand
     Private myCommand2 As System.Data.SqlClient.SqlCommand
     Private myDataAdapter As System.Data.SqlClient.SqlDataAdapter
     Private myDataAdapter2 As System.Data.SqlClient.SqlDataAdapter

     Public Sub New(  )
         InitializeComponent(  )

         ' create the connection object and open it
         Dim connectionString As String = _
             "server=localhost; uid=sa; " & _
             "pwd=YourPassword; database=northwind"

         myConnection = _
         New System.Data.SqlClient.SqlConnection(connectionString)
         myConnection.Open(  )

         ' create the DataSet and set a property
         myDataSet = New System.Data.DataSet(  )
         myDataSet.CaseSensitive = True

         ' create the SqlCommand  object and assign the
         ' connection and the select statement
         myCommand = New System.Data.SqlClient.SqlCommand(  )
         myCommand.Connection = myConnection
         myCommand.CommandText = "Select * from Employees"

         myCommand2 = New System.Data.SqlClient.SqlCommand(  )
         myCommand2.Connection = myConnection
         myCommand2.CommandText = "Select * from Orders"

         ' create the myDataAdapter object and pass in the
         ' SQL Command object and establish the table mappings
         myDataAdapter = New System.Data.SqlClient.SqlDataAdapter(  )
         myDataAdapter2 = New System.Data.SqlClient.SqlDataAdapter(  )
         myDataAdapter.SelectCommand = myCommand
         myDataAdapter2.SelectCommand = myCommand2
         myDataAdapter.TableMappings.Add("Table""Employees")
         myDataAdapter2.TableMappings.Add("Table""Orders")

         ' Tell the myDataAdapter object to fill the DataSet
         myDataAdapter.Fill(myDataSet)
         myDataAdapter2.Fill(myDataSet)

         Dim myDataRelation As System.Data.DataRelation
         Dim dataColumn1 As System.Data.DataColumn
         Dim dataColumn2 As System.Data.DataColumn
         dataColumn1 = _
             myDataSet.Tables("Employees").Columns("EmployeeID")
         dataColumn2 = _
             myDataSet.Tables("Orders").Columns("EmployeeID")

         myDataRelation = New System.Data.DataRelation_
             "EmployeesToOrders", dataColumn1, dataColumn2)

         myDataSet.Relations.Add(myDataRelation)

         Dim dataSetView As DataViewManager = _
             myDataSet.DefaultViewManager

         ' display it in the grid
         DataGrid1.DataSource = _
             dataSetView
         DataGrid1.DataMember = "Employees"

     End Sub 'New

     Private Sub InitializeComponent(  )
         Me.components = New System.ComponentModel.Container(  )
         Me.dataGrid1 = New System.Windows.Forms.DataGrid(  )
         dataGrid1.Location = New System.Drawing.Point(4824)
         dataGrid1.Size = New System.Drawing.Size(368160)
         dataGrid1.TabIndex = 0
         Me.Text = "ADOFrm1"
         Me.AutoScaleBaseSize = New System.Drawing.Size(513)
         Me.ClientSize = New System.Drawing.Size(464273)
         Me.Controls.Add(dataGrid1)
     End Sub 

 End Class 

   
    
  
Related examples in the same category
1.SqlDataAdapter.FillSchema
2.SqlDataAdapter.ReadXml
3.SqlDataAdapter.RowUpdated
4.SqlDataAdapter.RowUpdating
5.SqlDataAdapter.TableMappings.Add
6.SqlDataAdapter.WriteXml
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.