Re: please checkits urgent

From: Guy Rouillier <guyr-ml1(at)burntmail(dot)com>
To: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: please checkits urgent
Date: 2007-07-17 18:11:25
Message-ID: 469D064D.5020809@burntmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

durga prasad wrote:
> hi
>
> iam durga prasad,
>
> iam using Postgresql8.2 when iam trying to
> connect the driver is not working (org.postgresql.Driver) can please
> send me the driver class of java to connect to DB,please revert to me
> immediately following code i have used: pls correct and revert tome
>

You would get more relevant responses if you told us the error you are
receiving. Most likely, you are encountering a classpath problem. Make
sure the PG JAR file is in your runtime classpath. Your code below
looks fine.

>
>
>
> import java.sql.*;
> import java.io.*;
> class Conc {
> public static void main(String[] args) throws Exception {
>
> //Class.forName(" JDBC Driver goes here");
>
> Class.forName("org.postgresql.Driver");
>
> //jdbc:postgresql://host:port/database
>
> Connection
> con=DriverManager.getConnection("jdbc:postgresql://localhost:5432/postgres","poks","aqswdefr");
>
>
>
> Statement stmt=con.createStatement();
>
> //system.out.println("Creating Table---->");
> //stmt.executeUpdate("Create table emp(eid int, ename varchar2(12))");
>
> System.out.println("Inserting row--->");
> stmt.executeUpdate("Insert into emp values('bbbb',2)");
> System.out.println("One row is Inserted.....");
>
> System.out.println("Getting data ---->");
>
> ResultSet rs=stmt.executeQuery("select * from emp");
>
> while(rs.next())
> System.out.println(rs.getInt(1)+" "+rs.getString(2));
>
> rs.close();
> stmt.close();
> con.close();
> } //main()
> } //class
>

--
Guy Rouillier

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message Tonio Caputo 2007-07-17 21:29:36 Index scan with like expressions
Previous Message durga prasad 2007-07-17 12:02:23 please checkits urgent