I am currently creating a jdbc connection for every jsp or servlet.

How can I create a jdbc connection pool for sybase such that the need for creating the connection for every jsp/servlet can be avoided and the jsp/servlet can directly get the connection and transact with the database.

Can anyone provide step-by-step instructions for setting up of the same and also how to use it.

And the pool should be able to handle a commercial website.

link|improve this question

69% accept rate
Wow, you're not asking for much, are you? Help us help you...what container are you deploying to? And why are you making JDBC connections from your JSPs? Consider learning the MVC pattern and a framework like Spring. – Paul Feb 7 at 4:17
What container are you using? – Michael Feb 7 at 4:17
I'm using tomcat. – gautam vegeta Feb 7 at 4:35
Instructions for Tomcat 6 are here: people.apache.org/~fhanik/tomcat/jdbc-pool.html – Bill Feb 7 at 4:57
Hi I tried the same and created a sample jsp to test the same and i'm getting this error.Error occurred org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot load JDBC driver class 'com.sybase.jdbc3.jdbc.SybDriver' – gautam vegeta Feb 7 at 12:01
show 1 more comment
feedback

1 Answer

up vote 0 down vote accepted

Like stated in comments, you can check THIS Documentation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.