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

        • <bdo id='tYly7'></bdo><ul id='tYly7'></ul>

      1. <i id='tYly7'><tr id='tYly7'><dt id='tYly7'><q id='tYly7'><span id='tYly7'><b id='tYly7'><form id='tYly7'><ins id='tYly7'></ins><ul id='tYly7'></ul><sub id='tYly7'></sub></form><legend id='tYly7'></legend><bdo id='tYly7'><pre id='tYly7'><center id='tYly7'></center></pre></bdo></b><th id='tYly7'></th></span></q></dt></tr></i><div id='tYly7'><tfoot id='tYly7'></tfoot><dl id='tYly7'><fieldset id='tYly7'></fieldset></dl></div>
      2. <tfoot id='tYly7'></tfoot><legend id='tYly7'><style id='tYly7'><dir id='tYly7'><q id='tYly7'></q></dir></style></legend>

        Zend_Db 没有 Zend 框架

        时间:2023-05-31
        1. <small id='wLUFy'></small><noframes id='wLUFy'>

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

                <legend id='wLUFy'><style id='wLUFy'><dir id='wLUFy'><q id='wLUFy'></q></dir></style></legend>
              • <tfoot id='wLUFy'></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 框架的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文章

                  <tfoot id='l6gmg'></tfoot>

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

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

                  2. <legend id='l6gmg'><style id='l6gmg'><dir id='l6gmg'><q id='l6gmg'></q></dir></style></legend>