Hi,
Latest one, 2.1.0.
I looked in ConditionalTagHandler.java and it uses some Probe-instance
to find the property, as soon as this Probe encounters '[' it tries to
parse an index instead of checking the position of ']'.
Hope this helps,
Niels Beekman
-Original Message-
From: Brandon Go
Go ahead and post them here. It's better to have some dialog here.
Brandon
On 5/19/05, Chipomho <[EMAIL PROTECTED]> wrote:
> can i have the URL where i can post my ideas.
>
> >
> > From: Brandon Goodin <[EMAIL PROTECTED]>
> > Date: 2005/05/20 Fri PM 02:26:10 GMT+12:00
> > To: ibatis-user-java@in
can i have the URL where i can post my ideas.
>
> From: Brandon Goodin <[EMAIL PROTECTED]>
> Date: 2005/05/20 Fri PM 02:26:10 GMT+12:00
> To: ibatis-user-java@incubator.apache.org, [EMAIL PROTECTED]
> Subject: Re: Future releases
>
> we do not know when the next version will be out. If you have
we do not know when the next version will be out. If you have
suggestions then post the ideas on the dev list to see if they are
workable ideas. If they are good ideas then you would enter them into
the JIRA issue tracker and they will be included with a future
release.
Brandon
On 5/19/05, Chipom
This is just a question about future releases of IBatis,
when is the next release of IBatis? as a user i have one or two ideas/things
that i would like to see in the next version how do i contribute?
That parsing happens in BasicResultMap.
http://svn.apache.org/repos/asf/incubator/ibatis/trunk/ja
Hmmm..I suppose we could have implemented a better error check therefeel free to put in an "Improvement" in JIRA.
ClintonOn 5/19/05, Stuart Piltch <[EMAIL PROTECTED]> wrote:
Of course it was something simple.After ripping apart my project until it was just one set of bare bones jarsand classe
This is just plain funny. Can you tell that we love the easy questions?
Brandon
On 5/19/05, Ron Grabowski <[EMAIL PROTECTED]> wrote:
> You can use:
>
> <
>
> Or enclose the text within CDATA:
>
>
>
>
>
> --- Pham Anh Tuan <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > I can't not type < sign
What version of ibatis are you using?
On 5/19/05, Niels Beekman <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm using the iterate-tag to loop a list, but I can't find a way to use
> the current element in attributes of inner tags, when I try the
> following:
>
>
>
> $myList[].anotherProperty$
>
use the entity reference < instead
From: "Pham Anh Tuan" <[EMAIL PROTECTED]>
Reply-To: ibatis-user-java@incubator.apache.org
To:
Subject: [HELP] I can't not type < sign in my sqlmap xml file
Date: Thu, 19 May 2005 16:06:08 +0700
Hi,
I can't not type < sign in sql definition xml file, I don't kn
You have two options...
1) Substitute your < > with their entity counterparts < and >
Ex.
select COUNT(distinct ITEMID)
from SALE
where SALESTATUS = 0 and MAXPRICE = 1
and TO_DAYS(NOW()) - TO_DAYS(SALEDATE)
<= 15 and TO_DAYS(NOW()) - TO_DAYS(SALEDATE) > 0
and BUYERUSERID = #value#
2) Wr
You can use:
<
Or enclose the text within CDATA:
--- Pham Anh Tuan <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I can't not type < sign in sql definition xml file, I don't know why,
> plz help me solve this problem :(
>
>
>
> select COUNT(distinct ITEMID)
>
> from SALE
>
> where SALESTATUS
Hi Anh,
If I understand what you are saying, you
need to use the “<” character in your iBatis map. This is
possible by using the CDATA tags. I have included an example below. The only
problem I see with CDATA is that you might not be able to use dynamic sql in
the future.
Does an
Hello Anh,
I think you want to use < rather than <. SqlMaps will understand.
Also use > instead of >
-Wolf
On Thu, 19 May 2005, Pham Anh Tuan wrote:
Hi,
I can't not type < sign in sql definition xml file, I don't know why, plz help
me solve this problem :(
select COUNT(distinct ITEMID)
from
Of course it was something simple.
After ripping apart my project until it was just one set of bare bones jars
and classes and still seeing the error, I restored from cvs, cursed the computer
and made some coffee. After a few sips away from the computer, I realized what
happened. A quick trip to m
For your enjoyment here is how I solved the N+1 problem before I turned to iBatis. I'm know that I'm opening myself to major code ridicule.
Mark
/** * Translates a List of maps into a normailzed structure. Choose any number * of column names and pass them in as an array. The result will
That parsing happens in BasicResultMap.
http://svn.apache.org/repos/asf/incubator/ibatis/trunk/java/mapper/mapper2/src/com/ibatis/sqlmap/engine/mapping/result/BasicResultMap.java
There are 3 prepareXxxParameter methods. One for Primitives,
one for DOM and one for Beans. The only one that d
are you setting the password "masterkey" that come by default for user
sysdba in Firebird DB?
On 5/18/05, Sunil Sreedharan <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Posted below is the complete Error Trace.
>
> Server Error in '/WebSite1' Application.
> -
Hi,
I'm using the iterate-tag to loop a list, but I can't find a way to use
the current element in attributes of inner tags, when I try the
following:
$myList[].anotherProperty$
iBATIS tries to index the property myList with an empty string, but in
my opinion it should use the curren
Clinton Begin gmail.com> writes:
> That is terribly strange. We have a unit test confirming proper parsingI
wonder if the space is giving you trouble?
> Ours looks like this:
>column="{orderId=ORD_ID,lineId=ORD_FAVOURITE_LINE}"
> select="getSpecificLineItem"/>
> Try removin