Re: Applying Java methods.

2009-09-23 Thread sross
On Sep 22, 2:30 pm, Chouser wrote: > On Mon, Sep 21, 2009 at 5:22 PM, sross wrote: > > > Hi All, > > >  I'm looking for a bit of advice for calling a java method which has a > > few different signatures (such as Connection.prepareStatement). > >  Is there a cleaner way of passing a variable numb

Re: Applying Java methods.

2009-09-22 Thread Chouser
On Mon, Sep 21, 2009 at 5:22 PM, sross wrote: > > Hi All, > >  I'm looking for a bit of advice for calling a java method which has a > few different signatures (such as Connection.prepareStatement). >  Is there a cleaner way of passing a variable number of arguments to > the method, such as > > (

Re: Applying Java methods.

2009-09-22 Thread sross
On Sep 21, 11:35 pm, pmf wrote: > On Sep 21, 11:22 pm, sross wrote: > > > I'm looking for a bit of advice for calling a java method which has a > > few different signatures (such as Connection.prepareStatement). > > Is there a cleaner way of passing a variable number of arguments to > > the me

Re: Applying Java methods.

2009-09-21 Thread pmf
On Sep 21, 11:22 pm, sross wrote: >  I'm looking for a bit of advice for calling a java method which has a > few different signatures (such as Connection.prepareStatement). >  Is there a cleaner way of passing a variable number of arguments to > the method, such as > > (apply (memfn prepareStatem

Applying Java methods.

2009-09-21 Thread sross
Hi All, I'm looking for a bit of advice for calling a java method which has a few different signatures (such as Connection.prepareStatement). Is there a cleaner way of passing a variable number of arguments to the method, such as (apply (memfn prepareStatement) (sql/connection) args) or is d