开发者

Crystal Reports V11 Showing different boolean values per machine

开发者 https://www.devze.com 2023-02-24 06:00 出处:网络
I\'m getting a weird issue with Crystal - I have a basic report that displays records dependant on a boolean value (\'open\') being true.However, on some PCs it works fine, on others it just shows dis

I'm getting a weird issue with Crystal - I have a basic report that displays records dependant on a boolean value ('open') being true. However, on some PCs it works fine, on others it just shows displays a blank r开发者_如何学Pythoneport.

Having done a bit of checking into this, viewing the SQL query seems to indicate that there's an issue with how Crystal is interpreting the boolean value on different machines.

If we select 'Show SQL query' on each of the machines, the ones that don't work show the boolean section as:

`support`.`open`=1

The ones that work show:

 `support`.`open`=.T.

...which seems more realistic due to the datasource being a VFP table via an ODBC driver.

I can't quite figure this one out - I suppose it's possible it's something to do with the ODBC driver. Does anybody have any clues as to why this might be happening?

Thanks


The boolean should be directly interpreted through the ODBC... I would change the query to just have

Where 'support.open'

If logical, it will only be .T. / .F. or true / false or 1 / 0... Let the ODBC handler handle it for you.

--- Edit via comment.

I wasn't referring to Crystal's report formula, but the query... But if thats the issue in Crystal, I would change the query that is RETRIEVING the data to be...

IIF( support.open, "YES", "NO " ) as ItemIsOpen

VFP OleDB / ODBC should recognize the IIF() and return the column to a string of "YES" or "NO " respectively... Then use the "ItemIsOpen" column in your report instead of the "support.open" column.

0

精彩评论

暂无评论...
验证码 换一张
取 消