postgresql.badint property name was probably meant to be

postgresql.res.badint, since that's the name in the properties file.
REL7_2_STABLE
Peter Eisentraut 25 years ago
parent 082e1c7b95
commit bb0db45302
  1. 2
      src/interfaces/jdbc/org/postgresql/jdbc1/ResultSet.java

@ -258,7 +258,7 @@ public class ResultSet extends org.postgresql.ResultSet implements java.sql.Resu
{
return Integer.parseInt(s);
} catch (NumberFormatException e) {
throw new PSQLException ("postgresql.badint",s);
throw new PSQLException ("postgresql.res.badint",s);
}
}
return 0; // SQL NULL

Loading…
Cancel
Save