Error while compiling PostgreSQL with Java
Hello!
I have a problem. I try to install PostgreSQL from source with java. I
Installed JDK, ANT properly but when i try to configure i have an error -
Warning.Ignored options - --with-java. Please help me !
[root@lab01 /]# export|grep java
declare -x JAVA_HOME="/usr/java/jdk1.6.0_03"
declare -x OLDPWD="/usr/java/jdk1.6.0_03/bin"
declare -x
PATH="/usr/java/jdk1.6.0_03/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin:/usr/java/jdk1.6.0_03/bin:"
[root@lab01 rep]# java -version
java version "1.6.0_03"
Java(TM) SE Runtime Environment (build 1.6.0_03-b05)
Java HotSpot(TM) Server VM (build 1.6.0_03-b05, mixed mode)
[root@lab01 /]# ant -version
Apache Ant version 1.6.5 compiled on August 30 2006
config.status: creating GNUmakefile
config.status: creating src/Makefile.global
config.status: creating src/include/pg_config.h
config.status: src/include/pg_config.h is unchanged
config.status: creating src/interfaces/ecpg/include/ecpg_config.h
config.status: src/interfaces/ecpg/include/ecpg_config.h is unchanged
config.status: linking ./src/backend/port/tas/dummy.s to
src/backend/port/tas.s
config.status: linking ./src/backend/port/dynloader/linux.c to
src/backend/port/dynloader.c
config.status: linking ./src/backend/port/sysv_sema.c to
src/backend/port/pg_sema.c
config.status: linking ./src/backend/port/sysv_shmem.c to
src/backend/port/pg_shmem.c
config.status: linking ./src/backend/port/dynloader/linux.h to
src/include/dynloader.h
config.status: linking ./src/include/port/linux.h to
src/include/pg_config_os.h
config.status: linking ./src/makefiles/Makefile.linux to src/Makefile.port
configure: WARNING: option ignored: --with-java
Thanks in advance!
On Sun, 25 Nov 2007, Никоноров Григорий wrote:
I have a problem. I try to install PostgreSQL from source with java. I
Installed JDK, ANT properly but when i try to configure i have an error -
Warning.Ignored options - --with-java. Please help me !
Starting with the 8.0 release the JDBC driver was made an external project
instead of bundled with the server source code. The JDBC driver is
available from http://jdbc.postgresql.org/download.html
Kris Jurka
Никоноров Григорий wrote:
I have a problem. I try to install PostgreSQL from source with java. I
Installed JDK, ANT properly but when i try to configure i have an error -
Warning.Ignored options - --with-java. Please help me !
Kris Jurka wrote:
Starting with the 8.0 release the JDBC driver was made an external
project instead of bundled with the server source code. The JDBC driver
is available from http://jdbc.postgresql.org/download.html
Cross-posted to correct the OP's multi-post, so that pgsql.admin will also
contain the response(s).
--
Lew
Hi Kris
Thanks for your answer.When i download this "JDBC4 Postgresql Driver,
Version 8.2-506" driver what should i do next to configure PostgreSQL with
it ?
Thanks
On Sun, 25 Nov 2007 20:18:44 +0300, Kris Jurka <books@ejurka.com> wrote:
On Sun, 25 Nov 2007, О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫ О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫ wrote:
I have a problem. I try to install PostgreSQL from source with java. I
Installed JDK, ANT properly but when i try to configure i have an error
-
Warning.Ignored options - --with-java. Please help me !Starting with the 8.0 release the JDBC driver was made an external
project instead of bundled with the server source code. The JDBC driver
is available from http://jdbc.postgresql.org/download.htmlKris Jurka
---------------------------(end of broadcast)---------------------------
TIP 4: Have you searched our list archives?http://archives.postgresql.org/
__________ NOD32 2684 (20071125) Information __________
This message was checked by NOD32 antivirus system.
http://www.eset.com
--
О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫ M2, О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫ О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫ О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫ Opera:
http://www.opera.com/mail/
О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫ О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫ wrote:
Hi Kris
Thanks for your answer.When i download this "JDBC4 Postgresql Driver,
Version 8.2-506" driver what should i do next to configure PostgreSQL
with it ?
there is nothing you need on the backend side (except for maybe setting
up authentication as with every other client).
Stefan
Никоноров Григорий wrote:
Thanks for your answer.When i [sic] download this "JDBC4 Postgresql Driver,
Version 8.2-506" driver what should i do next to configure PostgreSQL
with it ?
Place the JAR containing the driver in the classpath for your Java
application. In the Java program be sure to load the org.postgresql.Driver
class and establish the connection to the database via a URL such as
jdbc:postgresql://yourhost:5432/yourdb. (JNDI is another approach which does
these steps via a declarative approach.)
If you had read any of the PG JDBC documentation
<http://jdbc.postgresql.org/documentation/82/index.html>
you might have found instructions there. Chapters 2 and 3 of the referenced
link (from the very same site from which you got the driver) go into some detail.
<http://java.sun.com/> has some excellent information about JDBC in general.
<http://java.sun.com/docs/books/tutorial/jdbc/index.html>
SunIYF, PGIYF (in this case, jdbc.postgresql.org IYF) and GIYF.
--
Lew
I try to describe my problem. I need to switch JIRA to PostgreSQL DB. I
try to do how explain in
http://www.atlassian.com/software/jira/docs/latest/databases/postgres.html
and confronted with some difficulties.
Now i want understand how it works and should i configure postgreSQL with
java or not.
On Sun, 25 Nov 2007 21:08:44 +0300, Stefan Kaltenbrunner
<stefan@kaltenbrunner.cc> wrote:
О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫ О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫ wrote:
Hi Kris
Thanks for your answer.When i download this "JDBC4 Postgresql Driver,
Version 8.2-506" driver what should i do next to configure PostgreSQL
with it ?there is nothing you need on the backend side (except for maybe setting
up authentication as with every other client).Stefan
---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend__________ NOD32 2684 (20071125) Information __________
This message was checked by NOD32 antivirus system.
http://www.eset.com
--
О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫ M2, О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫ О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫ О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫О©╫ Opera:
http://www.opera.com/mail/
On Sunday 25 November 2007 1:32 pm, Dave Potts wrote:
Is there such a thing as an opensource schema printer for postgres ?
Dave.
See Autodoc at:
http://www.rbt.ca/autodoc/
--
Adrian Klaver
aklaver@comcast.net
Please post errors and your full environment configurationJDK versionJRE version (if different)
This would be a good time to look into loggers specifically either commons-logging or log4j Martin______________________________________________Disclaimer and confidentiality noteEverything in this e-mail and any attachments relates to the official business of Sender. This transmission is of a confidential nature and Sender does not endorse distribution to any party other than intended recipient. Sender does not necessarily endorse content contained within this transmission.> Date: Sun, 25 Nov 2007 12:18:44 -0500> From: books@ejurka.com> To: smex@mail.ru> CC: pgsql-general@postgresql.org> Subject: Re: [GENERAL] Error while compiling PostgreSQL with Java> > > > On Sun, 25 Nov 2007, Никоноров Григорий wrote:> > > I have a problem. I try to install PostgreSQL from source with java. I> > Installed JDK, ANT properly but when i try to configure i have an error -> > Warning.Ignored options - --with-java. Please help me !> >> > Starting with the 8.0 release the JDBC driver was made an external project > instead of bundled with the server source code. The JDBC driver is > available from http://jdbc.postgresql.org/download.html> > Kris Jurka> ---------------------------(end of broadcast)---------------------------> TIP 4: Have you searched our list archives?> > http://archives.postgresql.org/
_________________________________________________________________
Your smile counts. The more smiles you share, the more we donate. Join in.
www.windowslive.com/smile?ocid=TXT_TAGLM_Wave2_oprsmilewlhmtagline
On Nov 25, 2007 3:32 PM, Dave Potts <dave.potts@pinan.co.uk> wrote:
Is there such a thing as an opensource schema printer for postgres ?
http://schemaspy.sourceforge.net/
Creates nice html pages and graphics for many database flavors. Uses Java/JDBC.