RE: How connect JDBC

From: "Raghunath T" <raghunatht(at)mindtree(dot)com>
To: "Raghunath T" <raghunatht(at)mindtree(dot)com>, Gabriel García <gaby3011(at)yahoo(dot)com(dot)ar>, <pgsql-jdbc(at)postgresql(dot)org>
Subject: RE: How connect JDBC
Date: 2001-04-06 06:58:23
Message-ID: 7D6D227F5351FA4FB0A6B6FDBC0578F2038496@hqbng01ex01.mindtree.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

Hey Gabriel,
I think the following mail to you describes everything that you need
to connect to database with java. If something is not working, check your
pg_hba.conf file and start postmaster with the -i option. You could use the
following command for that
pg_ctl -o "-i" start

Regards,
Raghunath T

-----Original Message-----
From: Raghunath T
Sent: Wed 4/4/2001 9:41 PM
To: Gabriel García
Cc:
Subject: RE: [JDBC] How connect JDBC

Hi,
you'll have to first build the jdbc driver. Typically it would be
postgresql.jar.
For this you go to postgresql-7.0.2/src/interfaces/jdbc and then type
make jdbc1 or make jdbc2 (if you need j2se support)
This will give you postgresql.jar file
update ur classpath env variable to include the full path of
postgresql.jar.
Then in your code add
Class.forName("org.postgresql.Driver");
java.sql.Connection conn =
DriverManager.getConnection("jdbc:postgresql://<host ip>:<port
no>/dbname","<username>","<password>");
host ip : is the ip address of the host. could be something like
172.20.20.1
port : usually it is 5432 unless you are running postmaster on some
other port.
If your java code is on the same machine as your database then you
need not give ip and port.
You could just say "jdbc:postgresql:<dbname>"

I hope this should be sufficient :-))

Regards,
Raghunath T
-----Original Message-----
From: Gabriel García
Sent: Wed 4/4/2001 9:18 PM
To: pgsql-jdbc(at)postgresql(dot)org
Cc:
Subject: [JDBC] How connect JDBC

I have a program's java, and I need read a Postgres database, How I can call
the database from java.
Thanks in advance.

_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com

---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

Browse pgsql-jdbc by date

  From Date Subject
Next Message Peter T Mount 2001-04-06 07:32:10 Re: WG: JDBC 2.0 Scrollable Result Sets -- Slightly going mad --
Previous Message Knud Alex Mueller 2001-04-05 17:30:55 WG: JDBC 2.0 Scrollable Result Sets -- Slightly going mad --