PHP
  Home arrow PHP arrow Page 3 - The mysqli Extension and the Active Record Pattern
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
Google.com  
PHP

The mysqli Extension and the Active Record Pattern
By: Alejandro Gervasio
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 4
    2009-04-14


    Table of Contents:
  • The mysqli Extension and the Active Record Pattern
  • Getting started using the mysqli PHP extension
  • Finish updating the MySQL class
  • The sample MySQL class in action

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    The mysqli Extension and the Active Record Pattern - Finish updating the MySQL class
    ( Page 3 of 4 )

    In the prior section, you saw for yourself how simple it is to rewrite the CRUD methods of the “MySQL” class by utilizing the “mysqli” extension. Indeed, this updating process consists of using the appropriate syntax required for the extension, rather than modifying the implementation of the methods themselves, and this will also be true when it comes to rewriting the rest of the class.

    To demonstrate the veracity of this concept, below I've written the entire improved version of the class, this time including the methods that needed to be updated:


    class MySQL{

    private $mysqli;

    private $result;

    private $select='SELECT * FROM ';

    private $where=' WHERE ';

    private $limit=' LIMIT ';

    private $like=' LIKE ';

    public function __construct($host='localhost',$user='user',$password='password',$database='database'){

    // connect to MySQL and select database

    $this->mysqli=new mysqli($host,$user,$password,$database);

    if(mysqli_connect_errno()){

    throw new Exception('Error connecting to MySQL: '.$this->mysqli->error);

    }

    }

    // run SQL query

    public function query($query){

    if(!$this->result=$this->mysqli->query($query)){

    throw new Exception('Error running SQL query: '.$this->mysqli->error);

    }

    }

    // fetch one row

    public function fetchRow(){

    while($row=$this->result->fetch_assoc()){

    return $row;

    }

    return false;

    }

    // fetch all rows

    public function fetchAll($table='default_table'){

    $this->query($this->select.$table);

    $rows=array();

    while($row=$this->fetchRow()){

    $rows[]=$row;

    }

    return $rows;

    }

    // insert row

    public function insert($params=array(),$table='default_table'){

    $sql='INSERT INTO '.$table.' ('.implode(',',array_keys($params)).') VALUES (''.implode("','",array_values($params)).'')';

    $this->query($sql);

    }

    // update row

    public function update($params=array(),$where,$table='default_table'){

    $args=array();

    foreach($params as $field=>$value){

    $args[]=$field.'=''.$value.''';

    }

    $sql='UPDATE '.$table.' SET '.implode(',',$args).' WHERE '.$where;

    $this->query($sql);

    }

    // delete one or multiple rows

    public function delete($where='',$table='default_table'){

    $sql=!$where?'DELETE FROM '.$table:'DELETE FROM '.$table.' WHERE '.$where;

    $this->query($sql);

    }

    // fetch rows using WHERE clause

    public function fetchWhere($where,$table='default_table'){

    $this->query($this->select.$table.$this->where.$where);

    $rows=array();

    while($row=$this->fetchRow()){

    $rows[]=$row;

    }

    return $rows;

    }

    // fetch rows using LIKE clause

    public function fetchLike($field,$like,$table='default_table'){

    $this->query($this->select.$table.$this->where.$field.$this->like.$like);

    $rows=array();

    while($row=$this->fetchRow()){

    $rows[]=$row;

    }

    return $rows;

    }

    // fetch rows using LIMIT clause

    public function fetchLimit($offset=1,$numrows=1,$table='default_table'){

    $this->query($this->select.$table.$this->limit.$offset.','.$numrows);

    $rows=array();

    while($row=$this->fetchRow()){

    $rows[]=$row;

    }

    return $rows;

    }

    }


    That wasn’t rocket science, was it? As shown before, the “MySQL” class now implements all of its methods via the “mysqli” extension, which turns it into a more efficient piece of software.

    Nevertheless, this updating process would be rather incomplete if I didn’t show you a concrete example that demonstrates how this improved version of the class can be used to access a sample MySQL table.

    Therefore, the final section of this article will be exclusively dedicated to setting up this example, which hopefully will be an appropriate epilogue for this introductory guide on using the active record approach with PHP.

    Go ahead and read the next few lines. We’re almost done!



     
     
    >>> More PHP Articles          >>> More By Alejandro Gervasio
     

       

    PHP ARTICLES

    - Adding Ordering and Grouping Clauses to the ...
    - Implementing Factory Methods in PHP 5
    - Merging a File Split for FTP Upload using PHP
    - Getting Data from Yahoo Site Explorer Inboun...
    - Method Chaining: Adding More Selecting Metho...
    - How to Split a File During an FTP Upload Usi...
    - Expanding a Custom CodeIgniter Library with ...
    - Using the Yahoo Site Explorer Inbound Links ...
    - Building a CodeIgniter Custom Library with M...
    - Building an E-mini Trading System Using PHP ...
    - Completing the MySQL Class with Method Chain...
    - Building Dynamic Queries with Chainable Meth...
    - PHP Encryption and Decryption Methods
    - Building a MySQL Abstraction Class with Meth...
    - Completing a Sample String Processor with Me...





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 6 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek