I need to parse the value of a database column that generally contains integers, based on the result Set generated from a JDBC call. However, one particular row of the column has two integers in it (ie, "48, 103"). What will be the return value of resultSet.getInt() on that column?
|
It will throw an exception. I think you are taking the wrong approach here. The |
|||||||
|
|
You'll almost certainly get a (Personally I think it's an error if the driver lets you call |
|||||
|
|
I'd expect it to throw an exception. If it does give you a value, it won't be what you want. I'd get the values as strings and parse them, splitting on commas and trimming spaces. |
|||
|
|
varchar? – Andrzej Doyle Jul 14 '11 at 16:02selectstatement differ in its number of columns? – home Jul 14 '11 at 16:05