Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Imports System.Data.SqlClient
Public Class MultipleDataAdaptersOnOneConnection
Dim conn As New SqlConnection
Dim da1 As New SqlDataAdapter
Dim cmd1 As New SqlCommand
Dim ds1 As New DataSet
Dim da2 As New SqlDataAdapter
Dim cmd2 As New SqlCommand
Dim ds2 As New DataSet
''''''''''''''''''''''''''''''''
Public Sub TwoDataAdaptersOnOneConnection()
conn.ConnectionString = "database=UserAccounts;server=Batch;Integrated Security=SSPI"
conn.Open()
Dim oThread1 As New System.Threading.Thread(AddressOf Fill1)
oThread1.Start()
Dim oThread2 As New System.Threading.Thread(AddressOf Fill2)
oThread2.Start()
End Sub
''''''''''''''''''''''''''''''''
Private Sub Fill1()
Try
da1.SelectCommand = cmd1
da1.SelectCommand.Connection = conn
da1.SelectCommand = cmd1
cmd1.CommandType = CommandType.StoredProcedure
cmd1.CommandText = "dbo.spud_BadQueryLONG"
Debug.WriteLine("1 starting")
da1.Fill(ds1)
Debug.WriteLine("1 ending")
Catch ex As Exception
Dim a As String = ""
End Try
End Sub
''''''''''''''''''''''''''''''''
Private Sub Fill2()
Try
da2.SelectCommand = cmd2
da2.SelectCommand.Connection = conn
da2.SelectCommand = cmd2
cmd2.CommandType = CommandType.StoredProcedure
cmd2.CommandText = "dbo.spud_BadQuerySHORT"
Debug.WriteLine("2 starting")
da2.Fill(ds2)
Debug.WriteLine("2 ending")
Catch ex As Exception
Dim a As String = ""
End Try
End Sub
End Class