Fix schema for YEAR reserved word

This commit is contained in:
dsyer
2007-12-12 22:17:19 +00:00
parent 25c6447238
commit cc69a6a40c

View File

@@ -77,7 +77,7 @@ public class SqlGameDaoIntegrationTests extends
Game game = new Game();
game.setId(rs.getString("PLAYER_ID"));
game.setYear(rs.getInt("year"));
game.setYear(rs.getInt("year_no"));
game.setTeam(rs.getString("team"));
game.setWeek(rs.getInt("week"));
game.setOpponent(rs.getString("opponent"));