Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » BIRT » Null in string concatenation
Null in string concatenation [message #368388] Wed, 27 May 2009 13:53 Go to next message
JP Redro is currently offline JP RedroFriend
Messages: 181
Registered: July 2009
Location: India
Senior Member

Hi All,

I am using BIRT 2.2.1 for developing rptdesings, in my report i am
concatenating address1 and address2. While running report i am getting
"null null" at the address field. When i checked at back end there is no
data. Then it should be empty field. But i am getting null null.

Could you please suggest me how to eliminate it.

Thanks,
Red.


Thanks,
JP
Re: Null in string concatenation [message #368404 is a reply to message #368388] Wed, 27 May 2009 18:22 Go to previous message
Eclipse UserFriend
Originally posted by: jasonweathersby.windstream.net

Red,

I believe this has been fixed in later versions of BIRT, but you can
always modify the expression to check for null. eg

if( dataSetRow["test"] == null ){
"this is null";
}else{
dataSetRow["test"];
}

Jason

JP wrote:
> Hi All,
>
> I am using BIRT 2.2.1 for developing rptdesings, in my report i am
> concatenating address1 and address2. While running report i am getting
> "null null" at the address field. When i checked at back end there is no
> data. Then it should be empty field. But i am getting null null.
> Could you please suggest me how to eliminate it.
>
> Thanks,
> Red.
>
>
Previous Topic:Operations between DataSets
Next Topic:A strange bug when using many tables
Goto Forum:
  


Current Time: Thu Apr 25 04:30:11 GMT 2024

Powered by FUDForum. Page generated in 0.02494 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top