Subject | RE: [Firebird-Java] Re: Does FB support SQL isnull(...) ? |
---|---|
Author | Chris Donges |
Post date | 2004-06-01T06:52:13Z |
Does that strike anyone else as strange?
I have wondered since I found the wasNull function why there can't be a simple isNull function in the JDBC spec. Would be so much eaiser most of the time. Well, for me anyway.
Christoph
-----Original Message-----
From: Roman Rokytskyy [mailto:rrokytskyy@...]
Sent: Tuesday, 1 June 2004 4:50 PM
To: Firebird-Java@yahoogroups.com
Subject: [Firebird-Java] Re: Does FB support SQL isnull(...) ?
that first you have to read column value. If the getXXX method returns
non-primitive type (i.e. subclass of java.lang.Object), then you get
null value. But if method returns primitive type (int, long, double,
etc.), you get a default value from the specification (usually 0 or
0.0) and then you have to check value of ResultSet.wasNull() method.
Roman
Yahoo! Groups Sponsor
ADVERTISEMENT
Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/Firebird-Java/
To unsubscribe from this group, send an email to:
Firebird-Java-unsubscribe@yahoogroups.com
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
I have wondered since I found the wasNull function why there can't be a simple isNull function in the JDBC spec. Would be so much eaiser most of the time. Well, for me anyway.
Christoph
-----Original Message-----
From: Roman Rokytskyy [mailto:rrokytskyy@...]
Sent: Tuesday, 1 June 2004 4:50 PM
To: Firebird-Java@yahoogroups.com
Subject: [Firebird-Java] Re: Does FB support SQL isnull(...) ?
> ... I can't make it work. If it is supported, can someone indicate theSee javadocs for java.sql.ResultSet.wasNull() method. Main idea is
> correct syntax? (I'm looking thru help....)
that first you have to read column value. If the getXXX method returns
non-primitive type (i.e. subclass of java.lang.Object), then you get
null value. But if method returns primitive type (int, long, double,
etc.), you get a default value from the specification (usually 0 or
0.0) and then you have to check value of ResultSet.wasNull() method.
Roman
Yahoo! Groups Sponsor
ADVERTISEMENT
Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/Firebird-Java/
To unsubscribe from this group, send an email to:
Firebird-Java-unsubscribe@yahoogroups.com
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.