how to retrieve data from database ?????
hi friend,
To retrieve data from database in Java you will have to go through the JDBC. You will have to first load the database, then after you have to create a connection with the database and then you may proceed your desired work with database.
To know in detail about how to retrieve data from database you may go through the link given below, may this will be helpful for you.
Thanks.
hi friend,
You may retrieve data from database table using SQL "select" statement for example,
select * from tableName
Ads