resultset getLong
Hi,
I have a problem with Long fields.
I execute a query on a db oracle 9i and im using struts.
-
my example table on db:
id- number
genId - number
name - varchar(255 byte)
-
when i do:
Long test = rs.getLong("genId")
This function give me 0 but on db the true value is "NULL", i want get NULL and not 0. I tried using "Long" and not long, but no changes.
Any suggests?

