Как узнать список колонок в таблице с помощью Zend Framework

в разделе Программирование | Метки: PHP, Zend Framework


<?php

class accountsTable extends Zend_Db_Table
{
    protected 
$_name 'accounts';

    private function 
getColumns()
    {
        return 
$this->info(Zend_Db_Table_Abstract::COLS);
    }
}
?>