Utility for creating tables, inserting data through Ant - Mailing list pgsql-jdbc

From Vernon Wu
Subject Utility for creating tables, inserting data through Ant
Date
Msg-id 3VXWA8EAGD43552NMDBVTXQM4XZVF0.3cc35701@kimiko
Whole thread Raw
Responses Re: Utility for creating tables, inserting data through Ant  ("Joe Shevland" <jshevland@j-elite.com>)
List pgsql-jdbc
Hi,

Is a utility available in the PostGreSQL jdbc so that we can run Ant to deploy an application?

The build.xml file for Ant is something like

<target name="db-create-table" depends="init">
  <java classname="COM.postgresql.tools. ..." fork="yes" >
     <jvmarg line="${postgres-jvmargs}" />
     <arg value="${sql}/create-table.sql" />
     <classpath path="${postgres-path}" />
  </java>
  </target>



pgsql-jdbc by date:

Previous
From: "James Kelty"
Date:
Subject: Re: Compile Error on 7.1.3
Next
From: "Joe Shevland"
Date:
Subject: Re: Utility for creating tables, inserting data through Ant