> I am trying to load the driver by doing> >Class.forName("postgresql.Driver");
Try:
Class.forName("org.postgresql.Driver");
Hope this helps
Michael Stephenson