2
Answers

Reading integers from database and storing them in array

Vipul Kelkar

Vipul Kelkar

15y
2.5k
1

hey guys...m using sqldatareader to reader some integer values from database and i need to store them in an array

how shud i write it...m stuck..its urgent

------------------------------------------------

count  =  0

while(reader.Read())

{

   arr[count] = ?

   count++;

}

 

 

Answers (2)