If it's MySQL you could probably do something messy like this:
SELECT
*
FROM
bar_events
WHERE
CONVERT(bar_events.date AS DATE) BETWEEN CONVERT('02/26/2006' AS DATE) AND CONVERT('03/04/2006' AS DATE)
but it would probably be better if you could convert that column to a DATE/DATETIME