Access enclosed the date with C # characters to indicate the literal value of the date. And using one quote in your case means that you are comparing String / Text with the Date data type, thus a data type mismatch. Therefore, it should be:
SELECT *
FROM mytable
WHERE date =
Edper source
share