vote up 0 vote down star

How to get Column Name With Zend DB

flag

23% accept rate
Perhaps you should describe a little bit what you're trying to do... Apikot's answer is a starting point though. – Stefan Gehrig Apr 2 at 8:31

4 Answers

vote up 0 vote down

You could use the describeTable method

link|flag
vote up 1 vote down
$metadata = $db->describeTable($tableName);
$columnNames = array_keys($metadata);

http://framework.zend.com/manual/en/zend.db.html#zend.db.adapter.list-describe

link|flag
That's not really 100% correct as $metadata is an associative array ('column_name' => array()) of associative arrays (one for each column of the table). – Stefan Gehrig Apr 2 at 8:34
vote up -2 vote down
    $data = $this->db->fetchAll($source->queryString);
    $headerColumn = $this->db->describeTable("COLUMN_NAME");

how to get all column name?

link|flag
this is not a solution – solomongaby Apr 2 at 11:25
vote up 1 vote down

This is the correct answer, the older answers are wrong or outdated:

$cols = $table->info(Zend_Db_Table_Abstract::COLS);
link|flag
rewrote your intro-text since SO doesn't know 'bumping' and questions/answers are not considered old. in fact SO is a wiki and updating it is one of the best things you can do! +1 – tharkun Sep 21 at 9:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.