Looking into writing an app that would update a database through JDBC. Was curious if this could be safely implemented with servlets rather than the additional cost and development time using EJB. Can somebody comment? Thanks.
Hi, You could no doubt implement that with servlets and it is safe. You can do all sorts of operations like inserts,updates,deletes in the database safely. Ashwin
Cas Sater
Greenhorn
Joined: Mar 19, 2001
Posts: 2
posted
0
Thank you... Follow up then...(Maybe this is getting into EJB territory) At what point or in what situation does straight Servlet coding become too unwieldy and better handled by EJB application servers? Are there any resources that address the issues related to multiple users updating a database? I guess that transactions would handle this kind of thing, but I'd be interested to hear more. Thanks again.