• <bdo id='uG5MT'></bdo><ul id='uG5MT'></ul>
  • <i id='uG5MT'><tr id='uG5MT'><dt id='uG5MT'><q id='uG5MT'><span id='uG5MT'><b id='uG5MT'><form id='uG5MT'><ins id='uG5MT'></ins><ul id='uG5MT'></ul><sub id='uG5MT'></sub></form><legend id='uG5MT'></legend><bdo id='uG5MT'><pre id='uG5MT'><center id='uG5MT'></center></pre></bdo></b><th id='uG5MT'></th></span></q></dt></tr></i><div id='uG5MT'><tfoot id='uG5MT'></tfoot><dl id='uG5MT'><fieldset id='uG5MT'></fieldset></dl></div>

  • <small id='uG5MT'></small><noframes id='uG5MT'>

    <tfoot id='uG5MT'></tfoot>

      1. <legend id='uG5MT'><style id='uG5MT'><dir id='uG5MT'><q id='uG5MT'></q></dir></style></legend>

        Zend_Db 没有 Zend 框架

        时间:2023-10-03
      2. <i id='3LgmS'><tr id='3LgmS'><dt id='3LgmS'><q id='3LgmS'><span id='3LgmS'><b id='3LgmS'><form id='3LgmS'><ins id='3LgmS'></ins><ul id='3LgmS'></ul><sub id='3LgmS'></sub></form><legend id='3LgmS'></legend><bdo id='3LgmS'><pre id='3LgmS'><center id='3LgmS'></center></pre></bdo></b><th id='3LgmS'></th></span></q></dt></tr></i><div id='3LgmS'><tfoot id='3LgmS'></tfoot><dl id='3LgmS'><fieldset id='3LgmS'></fieldset></dl></div>

        1. <legend id='3LgmS'><style id='3LgmS'><dir id='3LgmS'><q id='3LgmS'></q></dir></style></legend>

            • <bdo id='3LgmS'></bdo><ul id='3LgmS'></ul>

                <tbody id='3LgmS'></tbody>

              <small id='3LgmS'></small><noframes id='3LgmS'>

            • <tfoot id='3LgmS'></tfoot>
                  本文介绍了Zend_Db 没有 Zend 框架的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我想在没有 Zend_Framework 的情况下使用 Zend_Db.我想为我现有的不是使用 Zend Framework 制作的网站合并 Zend_Db.是否可以像这样使用 Zend_Db?你能推荐好的教程或例子吗?

                  I want using Zend_Db without Zend_Framework. I want incorporate Zend_Db for my existing website that was not made using Zend Framework. Is it possible to use Zend_Db like this? Can you recommend good tutorial or example how to do it good?

                  推荐答案

                  在某种程度上,这取决于您使用的 Web 框架.但是,总的来说,Zend_Db 文档在这方面.

                  To some extent, this depends upon the web framework you are using. But, in general, the Zend_Db documentation is pretty clear in this regard.

                  在您的引导程序中创建一个适配器实例.举个例子:

                  Create an adapter instance in your bootstrap. As an example:

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

                  如果您打算使用 Zend_Db_Table,那么您可以将其设为默认适配器:

                  If you plan to use Zend_Db_Table, then you can make this the default adapter:

                  Zend_Db_Table::setDefaultAdapter($db);
                  

                  无论如何,将此适配器保存在您可以访问的地方会很有帮助.例如:

                  In any case, it's helpful to have this adapter saved someplace where you can access it. For example:

                  Zend_Registry::set('db', $db);
                  

                  然后在您的下游代码中,使用此适配器为 select()insert()update()delete() 等:

                  Then in your downstream code, use this adapter to create queries for select(), insert(), update(), delete(), etc:

                  $db = Zend_Registry::get('db');
                  $select = $db->select()
                      ->from('posts')
                      ->where('cat_id = ?', $catId)
                      ->order('date_posted DESC')
                      ->limit(5);
                  $rows = $db->fetchAll($select);
                  

                  希望这会有所帮助.干杯!

                  Hope this helps. Cheers!

                  这篇关于Zend_Db 没有 Zend 框架的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何使用 Zend Framework 正确创建域? 下一篇:如何在路由 INI 文件中为 Zend Framework 中的子域编

                  相关文章

                  最新文章

                • <legend id='byBbm'><style id='byBbm'><dir id='byBbm'><q id='byBbm'></q></dir></style></legend>

                  <small id='byBbm'></small><noframes id='byBbm'>

                  <i id='byBbm'><tr id='byBbm'><dt id='byBbm'><q id='byBbm'><span id='byBbm'><b id='byBbm'><form id='byBbm'><ins id='byBbm'></ins><ul id='byBbm'></ul><sub id='byBbm'></sub></form><legend id='byBbm'></legend><bdo id='byBbm'><pre id='byBbm'><center id='byBbm'></center></pre></bdo></b><th id='byBbm'></th></span></q></dt></tr></i><div id='byBbm'><tfoot id='byBbm'></tfoot><dl id='byBbm'><fieldset id='byBbm'></fieldset></dl></div>
                    <bdo id='byBbm'></bdo><ul id='byBbm'></ul>

                      <tfoot id='byBbm'></tfoot>