My Requirement:
STORED PROCEDURES:
==================
I have oracle Database as my back end. Presently i am using Prepared Statement to execute oracle queries.
For a good coding practice, i want to use Stored Procedures & call them from
Java servlets.
How to do that?
CONNECTION POOLING:
===================
Every time i access the DB, i will create a new connection object which is not a good practice.
How to implement Connection Pooling in Java servlets.
======================================================================
Any Sample Code will be really helpful for both