This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
struts data retrive query.............. important to me
sam dims
Greenhorn
Joined: Dec 01, 2008
Posts: 20
posted
0
hi friends I am very new to struts , i can insert value in database mysql, but dont know how to retrieve data from database and show it in jsp
if you have code it will be very helpful to me or give me a steps to do it.... i am not using hibernate or spring
thanks & regards,
Sam
sam dims
Greenhorn
Joined: Dec 01, 2008
Posts: 20
posted
0
anybody know this
Bauke Scholtz
Ranch Hand
Joined: Oct 08, 2006
Posts: 2458
posted
0
Struts is a MVC framework, not some database connectivity API.
Java SE offers you the JDBC API for database connectivity. Here is a JDBC tutorial: http://java.sun.com/docs/books/tutorial/jdbc/index.html To start, create a DAO class where in you takes and returns DTO's (javabeans) and do the JDBC tasks based on it, test it as an independent Java application. Once you got it to work, then just integrate it in your Struts application the usual way. There is a JDBC forum here devoted to questions related to JDBC.