SqlDataReader sqlReader; SqlCommand command = new SqlCommand(zapros, sqlConnection); sqlReader = command.ExecuteReader(); int i = 0; while (sqlReader.Read()) { Arr[i, 0] = sqlReader[i].ToString(); MessageBox.Show(Arr[i, 0]); } 

Only 1 table column is scrolled. How to pull out 2 and the next by index

  • 2
    Change i in a loop? - Andrei NOP
  • Yes, that's right! Chet blunted - user293746

0