If I extend Zend_Db_Table_Abstract as MyTable class, and then instantiate MyTable class as $myTable as showing below:
$myTable = new MyTable(...); Then how do I get all the column names as an array for this table? Thanks for your help. Bartosz Maciaszek wrote: > > Hi, > > Actually you cannot instantiate Zend_Db_Table_Abstract as it is an > abstract class. > You have to create another class which extends Zend_Db_Table_Abstract > in order to instantiate it. > > Regards. > > 2007/9/26, Kexiao Liao <[EMAIL PROTECTED]>: >> >> Say If I instantiate a Zend_Db_Table_Abstract as following: >> $myTable = new Zend_Db_Table_Abstract(...); >> >> How do I get all the column names as a array for this table? >> >> >> -- >> View this message in context: >> http://www.nabble.com/How-to-get-all-the-column-names-for-a-instance-of-Zend_Db_Table_Abstract-tf4522690s16154.html#a12902065 >> Sent from the Zend Framework mailing list archive at Nabble.com. >> >> > > -- View this message in context: http://www.nabble.com/How-to-get-all-the-column-names-for-a-instance-of-Zend_Db_Table_Abstract-tf4522690s16154.html#a12902390 Sent from the Zend Framework mailing list archive at Nabble.com.
