How to retrieve the mysql database value into array using java.If I retrieve Student Name from mysql Database means How can I get The all Student name in a mysql table to array using java?give me some examples.
thanks in advance
How to retrieve the mysql database value into array using java.If I retrieve Student Name from mysql Database means How can I get The all Student name in a mysql table to array using java?give me some examples.
thanks in advance
I'm not sure if this is right question on SO, it seems you've not tried anything :(
Btw, have a look at this first : JDBC Basics
First query all the student names from DB, then
while(resultset.next(){
//add each of them to array
}