I've noticed that with a mysql table using the Zend_Db_Table I get an error with;
PHP Code:
$order = array($this->_db->quoteIdentifier($this->_name) . "." . $this->_db->quoteIdentifier("id") . " DESC");
$this->fetchAll(1, $order);
It works fine without the quotes but I wonder if this aint a bug...