Re: AW: sql task output suppressing a column

2010-12-01 Thread Laurence Mills-Gahl
The problem seems to have been somewhere in the difference between sun java libraries and gnu. The process worked as expected on Mac OS X but not on SuSE Linux (until I switched to the Sun JVM and libraries). I don't know more than that at this point, but the expected behavior is back. It does seem

Re: AW: sql task output suppressing a column

2010-12-01 Thread Laurence Mills-Gahl
Good idea, but it's not a driver issue. A small jdbc app executing the same query with the same version of the driver gives me a result set as expected. On 12/1/10 3:03 PM, Rainer Noack wrote: > Hmm, sounds like a driver problem (jdbc vs. Native) , not an ant issue. > > -Ursprüngliche Nachri

Re: Running Ant target from a jar

2010-12-01 Thread Michael Ludwig
eboy.test schrieb am 01.12.2010 um 01:50 (-0800): > I want something like > > e.g. ant -jar test.jar rundemo > > here rundemo is the ant target, which invokes a class from test > package Have you tried running ant -h ? It would point you to -lib. -- Michael Ludwig --

AW: sql task output suppressing a column

2010-12-01 Thread Rainer Noack
Hmm, sounds like a driver problem (jdbc vs. Native) , not an ant issue. -Ursprüngliche Nachricht- Von: Laurence Mills-Gahl [mailto:elem...@gmail.com] Gesendet: Mittwoch, 1. Dezember 2010 17:45 An: user@ant.apache.org Betreff: sql task output suppressing a column I am having difficulty wi

sql task output suppressing a column

2010-12-01 Thread Laurence Mills-Gahl
I am having difficulty with the results of a sql task not being the same as the results from the sql query in the db environment and I am wondering if anybody else has seen this behavior. I have a sql task executing the following query: SELECT c.property_value, center.name, s.property_value FROM

Re: Running Ant target from a jar

2010-12-01 Thread eboy.test
David Weintraub wrote: > > On Tue, Nov 30, 2010 at 6:39 AM, eboy.test > wrote: >> >> I am using a ant build file to run targets (ant targets) in a Java API. >> Now, >> i want to make a jar out of the API and i want to know whether i will be >> able to run the targets now with the jar. > > A ja