You will almost certainly get a SQLException (or perhaps a NumberFormatException ). The actual interface simply says that the result set will return "the value of the specified column ... as int ". The exact details will be implementation specific, but I doubt you will get anything reasonable from the value "48, 103" .
(Personally, I consider the error if the driver allows you to call getInt in this column in any case, even for "reasonable" values. The string is not int, even if it is a string representation of int, and the conversion must be done manually by the developer.)
source share