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