Hi all, I need to know if I need to use JDBC if I have a jsp page that uses beans. if not, this means that beans can handle data base connection? Thanks, Jimi.
Frank Carver
Sheriff
Joined: Jan 07, 1999
Posts: 6913
posted
0
In general, if you are using beans in your JSP, then the beans should do all the behind-the-scenes stuff. And this includes database access. So the beans (or whatever creates them) should be coded up to use JDBC, and the JSP just asks the beans for values.