ty2#
>
>
>
> Christian
>
> --
> *From:* nullptr rejected [mailto:[EMAIL PROTECTED]
> *Sent:* Monday, July 28, 2008 2:44 PM
> *To:* user-java@ibatis.apache.org
> *Subject:* SELECT containing NULL
>
> I am not getting the expecte
AND Column2 = #property2#
Christian
From: nullptr rejected [mailto:[EMAIL PROTECTED]
Sent: Monday, July 28, 2008 2:44 PM
To: user-java@ibatis.apache.org
Subject: SELECT containing NULL
I am not getting the expected results when executing a select statement
con
I am not getting the expected results when executing a select statement
containing null values.
I have the following example:
SELECT ColumnUID
WHERE
Column1 = #property1#
AND Column2 = #property2#
In java:
class RecordItem {
private String property1;
private String property2;
...