Advertisement
gareth126

ex 4

Nov 21st, 2011
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.97 KB | None | 0 0
  1. <?php
  2.  
  3. class Application_Model_Albums extends Zend_Db_Table_Abstract
  4. {
  5.     protected $bootstrap;
  6.     protected $db;
  7.     //protected $_name = 'albulms';
  8.     //protected $_primary = 'id';
  9.    
  10.     //public $db;
  11.  
  12.    
  13.     function __construct(){
  14.        
  15.           /*$this->db = Zend_Db::factory('Pdo_Mysql', array(
  16.                                                 'host'
  17.                                                 => 'localhost',
  18.                                                 'username' => 'root',
  19.                                                 'password' => 'monkey12',
  20.                                                 'dbname'
  21.                                                 => 'zend_test'));
  22.         $this->db = $resource->getDbAdapter();*/
  23.         $this->bootstrap = Zend_Controller_Front::getInstance()->getParam('bootstrap');
  24.         $this->db = $this->bootstrap->getResource('db');
  25.     }
  26.  
  27.    
  28.     public function getAlbums()
  29.     {
  30.         /*$sql = 'SELECT * FROM albulms';
  31.         $results = $this->db->fetchAll($sql);
  32.         return $results;*/
  33.        
  34.         $select = $this->db
  35.                         ->select()
  36.                         ->from('albulms')
  37.                         ->where('id > ?', 1);
  38.         $results = $this->db->fetchAll($select);
  39.         return $results;
  40.     }
  41.  
  42.    
  43. }
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement