PHPORM framework and simple code implementation -- make OOP and relational databases more harmonious

Source: Internet
Author: User
ObjectRelationalMapping (ORM) is a technology designed to solve the mismatch between object-oriented and relational databases. To put it simply, ORM automatically persists the objects in the program to the relational database by using metadata that describes the ing between objects and databases. In essence, data is converted from one form to another. ORM provides all SQL languages

Object Relational ING (ORM) is a technology designed to solve the mismatch between objects and Relational databases. To put it simply, ORM automatically persists the objects in the program to the relational database by using metadata that describes the ing between objects and databases. In essence, data is converted from one form to another.

ORM provides the generation of all SQL statements, and the code staff are far away from the database concept. Ing from a conceptual requirement (such as an HQL) into an SQL statement does not require any cost, and even 1% of the performance loss occurs. In the ing process, the real performance loss is more specifically in the process of object instantiation.

Currently, PHP Open source is well known? ORM? There are the following:

1. Propel

Propel is an Object Relational Mapping framework applicable to PHP5. it supports the Object persistence layer based on Apache Torque. It uses schema definition files in XML format and corresponding configuration files to generate SQL statements and classes. it allows you to use objects instead of SQL statements to read and write records in database tables. Propel provides a generator to create an SQL definition file and a PHP class for your data model. Developers can also easily customize the generated classes. we can also integrate Propel into existing application development frameworks through XML, PHP, and Phing build tools. For example, in versions earlier than 1.2 of PHP framework symfony, the lite version of Propel is used as the default ORM framework by default.

Http://www.propelorm.org/

2. Doctrine

Doctrine is a php orm framework that must run on version> = php5.2.3. it is a powerful data abstraction layer.

One of its main features is the use of object-oriented methods to encapsulate database queries. it performs database queries through a DQL query statement similar to Hibernate HQL at the underlying layer, this makes development more flexible and greatly reduces repeated code. Compared with Propel, Doctrine supports full-text retrieval. Doctrine documents are always richer and more active than Propel, it is more natural to use, easier to read, and closer to native SQL. Performance is slightly better than Propel. You can also easily integrate Doctrine into existing Application Frameworks. for example, Doctrine is used as the default ORM framework in versions later than 1.3 of PHP symfony, doctrine and Codeigniter can also be integrated.

Http://www.doctrine-project.org/

3. EZPDO

EZPDO is a very lightweight php orm framework. The author of EZPDO aims to reduce the complex ORM learning curve and try to strike a balance between the operational efficiency and functions of the ORM. it is the simplest ORM framework I have ever used, at present, I want to integrate it into my CoolPHP SDK, and the running efficiency is quite good, and the functions can basically meet the needs, but the ESPDO update is relatively slow.

Http://www.ezpdo.net

4. RedBean

RedBean is an easy-to-use, lightweight php orm framework that provides support for MySQL, SQLite & PostgreSQL. The RedBean architecture is very flexible and the core is very simple. developers can easily extend functions through plug-ins.

Http://www.redbeanphp.com/

5. others

The fleaphp development Framework in China implements ORM based on TableDataGateway. in addition to providing SQL statement encapsulation, Zend Framework also implements TableGateway, TableRowSet, and TableRow; there are also some solutions similar to Rails's ActiveRecord implementation, such as the Yii Framework.

In general, the ORM framework can meet basic requirements to deal with simple application systems, greatly reducing development difficulty and improving development efficiency. However, in terms of SQL optimization, it must be a little worse than pure SQL, and it may not be ideal for processing complex associations and SQL nested expressions. Perhaps this is mainly because of the persistence of PHP Objects, resulting in low ORM efficiency, which is generally slower than pure SQL. However, there are solutions to these problems. The most basic solution to performance is that we can use cache to improve efficiency. for Hibernate, although the configuration is complicated, however, the flexible use of the second-level cache and query cache greatly relieves the database query pressure, greatly improving the system performance.

If you want to implement a php orm by yourself, refer to the following:

 _DB = mysql_connect('127.0.0.1','root','') ;       $this->_tableName = $this->getTableName();       $this->_arRelationMap = $this->getRelationMap();       if(isset($id))$this->_ID = $id;   }   abstract protected function getTableName();   abstract protected function getRelationMap();   public function Load(){       if(isset($this->_ID)){           $sql = "SELECT ";           foreach($this->_arRelationMap as $k => $v){               $sql .= '`'.$k.'`,';           }           $sql .= substr($sql,0,strlen($sql)-1);           $sql .= "FROM ".$this->_tableName." WHERE ".$this->pk." = ".$this->_ID;           $result =$this->_DB->mysql_query($sql);           foreach($result[0] as $k1 => $v1){              $member = $this->_arRelationMap[$key];              if(property_exists($this,$member)){                 if(is_numeric($member)){                     eval('$this->'.$member.' = '.$value.';');                 }else{                     eval('$this->'.$member.' = "'.$value.'";');                 }              }           }       }       $this->is_load = true;   }   public function __call($method,$param){      $type   = substr($method,0,3);      $member = substr($method,3);      switch($type){         case 'get':             return $this->getMember($member);             break;         case 'set':             return $this->setMember($member,$param[0]);      }      return false;   }   public function setMember($key){       if(property_exists($this,$key)){          if(is_numeric($val)){             eval('$this->'.$key.' = '.$val.';');          }else{             eval('$this->'.$key.' = "'.$val.'";');          }          $this->_modifyMap[$key] = 1;       }else{          return false;       }   }   public function getMember($key,$val){       if(!$this->is_load){          $this->Load();       }       if(property_exists($this,$key)){          eval('$res = $this->'.$key.';' );          return $this->$key;       }       return false;   }   public function save(){      if(isset($this->_ID)){          $sql = "UPDATE ".$this->_tableName." SET ";          foreach($this->arRelationMap as $k2 => $v2){              if(array_key_exists( $k2, $this->_modifyMap)){                  eval( '$val = $this->'.$v2.';');                  $sql_update .=  $v2." = ".$val;              }          }          $sql .= substr($sql_update,0,strlen($sql_update));          $sql .= 'WHERE '.$this->pk.' = '.$this->_ID;      }else{          $sql = "INSERT INTO ".$this->_tableName." (";          foreach($this->arRelationMap as $k3 => $v3){              if(array_key_exists( $k3,$this->_modifyMap)){                  eval('$val = $this->'.$v3.';');                  $field  .= "`".$v3."`,";                   $values .= $val;              }          }          $fields = substr($field,0,strlen($field)-1);          $vals   = substr($values,0,strlen($values)-1);          $sql .= $fields." ) VALUES (".$vals.")";      }      echo $sql;      //$this->_DB->query($sql);   }   public function __destory(){      if(isset($this->ID)){         $sql = "DELETE FROM ".$this->_tableName." WHERE ".$this->pk." = ".$this->_ID;        // $this->_DB_query($sql);      }   }}class User extends Model{    protected  function getTableName(){       return "test_user";    }    protected function getRelationMap(){        return array(               'id' => USER_ID,              'user_name'=> USER_NAME,              'user_age' => USER_AGE        );    }    public function getDB(){       return $this->_DB;    }}$UserIns = new User();print_r($UserIns);?>

? Note: this article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.