在没有 MVC 的情况下使用 Zend Framework Db 表

发布于 2024-08-06 15:19:19 字数 453 浏览 13 评论 0原文

我尝试使用 Zend Framework 而不使用 MVC 结构,特别是 Db_Table 类。

我创建了几个代表我的数据库表的类,即

class DBTables_Templates extends Zend_Db_Table_Abstract  
{  
    protected $_name = "templates";  
}  

当我尝试实例化此类(它包含在内)时,我收到以下错误:

致命错误:未捕获异常“Zend_Db_Table_Exception”,消息为“未找到 DBTables_Templates 的适配器”

有谁知道我如何创建并包含供 Db_Table 类使用的数据库适配器?

任何指点都非常感谢!我用的是最新版本的ZF。

I am trying to use the Zend Framework without using the MVC structure, specifically the Db_Table classes.

I have created a couple of classes representing my database tables, i.e.

class DBTables_Templates extends Zend_Db_Table_Abstract  
{  
    protected $_name = "templates";  
}  

When I try to instantiate this class (it is included fine), I get the following error:

Fatal error: Uncaught exception 'Zend_Db_Table_Exception' with message 'No adapter found for DBTables_Templates'

Does anyone know how I create and include the database adapter for the Db_Table classes to use?

Any pointers are greatly appreciated! I am using the latest version of ZF.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦魇绽荼蘼 2024-08-13 15:19:19

您需要创建一个 Zend_Db_Adapter,它是用于连接数据库的类。

$db = new Zend_Db_Adapter_Pdo_Mysql(array(
    'host'     => '127.0.0.1',
    'username' => 'webuser',
    'password' => 'xxxxxxxx',
    'dbname'   => 'test'
));

或者,您可以使用 factory() 方法使实例化更加可配置:

$db = Zend_Db::factory('Pdo_Mysql', array(
    'host'     => '127.0.0.1',
    'username' => 'webuser',
    'password' => 'xxxxxxxx',
    'dbname'   => 'test'
));

请参阅http://framework.zend.com/manual/en/zend.db.html#zend.db.adapter.connecting

然后将此适配器对象指定给您的表类。至少有三种方法可以做到这一点:

  • 为所有表设置应用程序范围的默认值:

    Zend_Db_Table_Abstract::setDefaultAdapter($db);
    
  • 指定表构造函数的适配器:

    $table = new MyTable( array('db'=>$db) );
    
  • 将适配器存储在注册表中并将其指定给表或将其设置为默认值:

    Zend_Registry::set('my_db', $db); 
    $table = new MyTable( array('db'=>'my_db') );
    // 或者:
    Zend_Db_Table_Abstract::setDefaultAdapter('my_db');
    

请参阅http://framework.zend.com/manual/en/zend.db.table.html#zend.db.table.constructing

You need to create a Zend_Db_Adapter, which is the class you use to connect to the database.

$db = new Zend_Db_Adapter_Pdo_Mysql(array(
    'host'     => '127.0.0.1',
    'username' => 'webuser',
    'password' => 'xxxxxxxx',
    'dbname'   => 'test'
));

Or you can use the factory() method to make instantiation more configurable:

$db = Zend_Db::factory('Pdo_Mysql', array(
    'host'     => '127.0.0.1',
    'username' => 'webuser',
    'password' => 'xxxxxxxx',
    'dbname'   => 'test'
));

See http://framework.zend.com/manual/en/zend.db.html#zend.db.adapter.connecting

Then specify this adapter object to your table class. There are at least three ways to do this:

  • Set an application-wide default for all tables:

    Zend_Db_Table_Abstract::setDefaultAdapter($db);
    
  • Specify the adapter to the table constructor:

    $table = new MyTable( array('db'=>$db) );
    
  • Store the adapter in the registry and specify it to the table or set it as default:

    Zend_Registry::set('my_db', $db); 
    $table = new MyTable( array('db'=>'my_db') );
    // alternatively:
    Zend_Db_Table_Abstract::setDefaultAdapter('my_db');
    

See http://framework.zend.com/manual/en/zend.db.table.html#zend.db.table.constructing

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文