Table 'antoniorodrigues.event' doesn't exist: 
		select oid, title, txt as description, concat('http://www.antoniorodrigues.net/index.php?oid=', oid) as link
		from event
		where startdate >= curdate() or (startdate < curdate() and enddate > curdate())
		order by (startdate >= curdate()) asc, startdate asc
		limit 100
	
