how to fetch the states from the the states table in mssql server db by using jsp as a drop down box
closed as not a real question by palacsint, casperOne♦ Nov 16 '12 at 15:00
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
To start, create a javabean representing a state with code and name (basically the same data as you have in the DB table). Then create a DAO class which does the database interaction task. Then create a Servlet class which retrieves the list from the DAO, puts it in the request scope and forwards the request to the JSP. Finally create a JSP file which displays the list using JSTL's Basic example of the state bean:
Basic example of the DAO class:
Basic example of the Servlet class:
Basic example of JSP file:
Map the servlet on the To get more insights and ideas around the DAO pattern, you may find this article useful as well. |
|||
|
|
|
Add these imprts to the page
Then add an sql query similar to this
then use the tags to create the list
|
|||