Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bb0db45

Browse files
committed
postgresql.badint property name was probably meant to be
postgresql.res.badint, since that's the name in the properties file.
1 parent 082e1c7 commit bb0db45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interfaces/jdbc/org/postgresql/jdbc1/ResultSet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ public int getInt(int columnIndex) throws SQLException
258258
{
259259
return Integer.parseInt(s);
260260
} catch (NumberFormatException e) {
261-
throw new PSQLException ("postgresql.badint",s);
261+
throw new PSQLException ("postgresql.res.badint",s);
262262
}
263263
}
264264
return 0; // SQL NULL

0 commit comments

Comments
 (0)