From: books at ejurka.com (Kris Jurka) Date: Wed, 16 Jun 2010 15:32:01 -0700 Subject: [Pljava-dev] please help - java.lang.ClassNotFoundException: org.postgresql.Driver In-Reply-To: References: Message-ID: <4C1950E1.3030206@ejurka.com> On 6/16/2010 3:11 PM, swaroop wrote: > The last step says, run the deployer program. I did that but > unfortunately I get an exception. Please help me here. The exception is > below. I tried to download the jdbc driver at > http://jdbc.postgresql.org/download/postgresql-8.4-701.jdbc3.jar and > added it to classpath. But this did not help. Please advice. > > swaroop at swaroop-laptop:~/Project/pljava$ java -cp deploy.jar > org.postgresql.pljava.deploy.Deployer -install > java.lang.ClassNotFoundException: org.postgresql.Driver You need to add it to the classpath here: java -cp postgresql-8.4-701.jdbc3.jar:deploy.jar org.postgresql.pljava.deploy.Deployer -install