How do I retrieve a microsoft access date field. Here is my code in a case statement.<br>ResultSet rs;<br><br>case Types.DATE:<br> currentRow.addElement(<br> new Date( rs.getDate(i)) );<br> break;<br>This gives an error that "reference to date is ambigious - in both java.util and java.sql".<br>Changing to this gives another type of error<br> Date.valueof( rs.getDate(i)) );<br>error is: "no method with java.sql.Date "<br><br>Do I need to break the date down into individual parts such as year, month, day. if so, how would it look in code.<br><br>Thank you,<br>