project.markTableEvictable(VoterConstants.TABLENAME_CONTESTANTS);
project.addStmtProcedure("GetVote",
"SELECT * FROM " + VoterConstants.TABLENAME_VOTES + " WHERE vote_id = ?");
project.addStmtProcedure("GetAllVotes",
"SELECT * FROM " + VoterConstants.TABLENAME_VOTES);
project.addStmtProcedure("GetVoteJoin",
String.format("SELECT phone_number, contestant_number FROM %s, %s " +
" WHERE vote_id = ? " +
" AND %s.contestant_number = %s.contestant_number",
VoterConstants.TABLENAME_VOTES, VoterConstants.TABLENAME_CONTESTANTS,
VoterConstants.TABLENAME_VOTES, VoterConstants.TABLENAME_CONTESTANTS));