> i am getting the below error
> can anybody help me
> 
> The error starts here:
> 
> type Exception report
> 
> message Internal Server Error
> 
> description The server encountered an internal error (Internal Server Error) that 
>prevented it from fulfilling this request.
> 
> exception 
> 
> javax.servlet.ServletException: No suitable driver

JDBC error indicating that a driver class for your desired JDBC connection has not 
been registered. For PostgreSQL the process is relatively simple:

- add postgres-jdbc.jar to a classpath (in Tomcat, place it under 
$CATALINA_HOME/common/lib
- load the driver with: "Class.forName( "org.postgresql.Driver" )

I'd expct other dirvers to be similar.

Nix.


Reply via email to