News

con.Open() Dim myCommand As String = "select field1, field2 from table" Dim ds As New DataSet Dim da As New SqlDataAdapter(myCommand, con) da.Fill(ds, "table") con.Close() ...