我想使用Zend框架而不使用MVC結構,特別是Db_Table
類。使用Zend Framework沒有MVC的Db表
我已經創建了幾個代表我的數據庫表類,即
class DBTables_Templates extends Zend_Db_Table_Abstract
{
protected $_name = "templates";
}
當我嘗試實例化這個類(它包括罰款),我收到以下錯誤:
Fatal error: Uncaught exception 'Zend_Db_Table_Exception' with message 'No adapter found for DBTables_Templates'
有沒有人知道我如何創建幷包含Db_Table
類使用的數據庫適配器?
任何指針非常感謝!我正在使用ZF的最新版本。
非常感謝比爾,即工作一種享受!再次感謝 – Stuart 2009-10-06 19:15:12