Re: JDBC connection issue

From: "Young Nam" <Ynam(at)sharedmarketing(dot)com>
To: "Jan de Visser" <jdevisser(at)digitalfairway(dot)com>, <pgsql-jdbc(at)postgresql(dot)org>
Subject: Re: JDBC connection issue
Date: 2004-07-13 18:29:43
Message-ID: 581C48EBC132FF459E62A6809D0D72AEF51A74@mail.sharedmarketing.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

Here is the build.xml file that I use to build, and test the program.

<project name="Xlang" basedir="." default="run">
<property name="target" value="bin/${ant.project.name}.jar"/>
<target name="build">
<mkdir dir="build"/>
<mkdir dir="bin"/>

<javac srcdir="src" destdir="build" debug="true"/>
<jar destfile="${target}" index="true" basedir="build" includes="**/*.class">
<manifest>
<attribute name="Main-class" value="${ant.project.name}"/>
</manifest>
</jar>
</target>

<target name="run" depends="build">
<java jar="${target}" fork="true"/>
</target>
</project>

Thanks!

-----Original Message-----
From: Jan de Visser [mailto:jdevisser(at)digitalfairway(dot)com]
Sent: Tuesday, July 13, 2004 1:17 PM
To: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: [JDBC] JDBC connection issue

On July 13, 2004 02:05 pm, Young Nam wrote:
> I've included both jar files in the CLASSPATH.  Same error.

But you still haven't shown us how you start your program...

JdV!!

--
--------------------------------------------------------------
Jan de Visser jdevisser(at)digitalfairway(dot)com

Baruk Khazad! Khazad ai-menu!
--------------------------------------------------------------

---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to majordomo(at)postgresql(dot)org)

Browse pgsql-jdbc by date

  From Date Subject
Next Message Paul Thomas 2004-07-13 18:36:33 Re: Windows port installer
Previous Message Young Nam 2004-07-13 18:20:02 Re: JDBC connection issue