zoukankan      html  css  js  c++  java
  • HelpersDatabase

    HelpersDatabase

    The database class is used to connect to a MySQL database using the connection details set in the app/Config.php.

    The constants (DB_TYPE, DB_HOST, DB_NAME, DB_USER, DB_PASS) are used to connect to the database, the class extends PDO, it can pass the connection details to its parent construct.

    try {
        parent::__construct(DB_TYPE.':host='.DB_HOST.'; dbname='.DB_NAME,DB_USER,DB_PASS);
        $this->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    } catch (PDOException $e) {
        Logger::newMessage($e);
        customErrorMsg();
    }

    The error mode is set to use exceptions rather than failing silently in the event of an error. If there is an error they are recorded in app/logs/error.log

    This class has the following methods:

    NOTE: The methods use prepared statements.

    Select

    The SELECT query below will return a result set based upon the SQL statement. The result set will return all records from a table called contacts.

    $this->db->select("SELECT firstName, lastName FROM ".PREFIX."contacts");

    Optionally an array can be passed to the query, this is helpful to pass in dynamic values, they will be bound to the query in a prepared statement this ensures the data never goes into the query directly and avoids any possible sql injection.

    Example with passed data:

    $this->db->select("SELECT firstName, lastName FROM ".PREFIX."contacts WHERE contactID = :id", array(':id' => $id));

    In this example there is a where condition, instead of passing in an id to the query directly a placeholder is used :id then an array is passed the key in the array matches the placeholder and is bound, so the database will get both the query and the bound data.

    Insert

    The insert method is very simple it expects the table name and an array of data to insert:

    $this->db->insert(PREFIX.'contacts', $data);

    The data array is created in a controller, then passed to a method in a model

    $postdata = array(
        'firstName' => $firstName,
        'lastName'  => $lastName,                                 
        'email'     => $email                            
    );
    
    $this->model->insertContact($postdata); 

    The model passes the array to the insert method along with the name of the table, optionally return the id of the inserted record back to the controller.

    public function insertContact($data)
    {
        $this->db->insert(PREFIX.'contacts', $data);
        return $this->db->lastInsertId('contactID');
    }

    Update

    The update is very similar to insert an array is passed with data, this time also an identifier is passed and used as the where condition.

    Controller:

    $postdata = array(
        'firstName' => $firstName,
        'lastName'  => $lastName,                                 
        'email'     => $email                            
    );
    
    $where = array('contactID' => $id);
    
    $this->model->updateContact($postdata, $where); 

    Model:

    public function updateContact($data, $where)
    {
        $this->db->update(PREFIX.'contacts',$data, $where);
    }

    Delete

    This method expects the name of the table and an array containing the columns and value for the where claus.

    Example array to pass:

    $data = array('contactID' => $id);

    Delete in model

    public function deleteContact($data)
    {
        $this->db->delete(PREFIX.'contacts', $data);
    }

    Truncate

    This method will delete all rows from the table, the method expects the table name as an argument.

    public function deleteContact($table)
    {
        $this->db->truncate($table);
    }
  • 相关阅读:
    第八周读书笔记 ——编程之美
    结对编程收获——旧的不去&新的不来
    第七周读书笔记——深入理解计算机系统
    第六周读书笔记——《编程珠玑(第二版)》
    专业性体育平台——虎扑的发展与创新的思考(第五次课后作业)
    第五次读书笔记—— Robrt C. Martin的《代码整洁之道》
    个人博客-ASE课程最后一周总结
    期中作业,阅读材料感想
    Poemscape beta版本第二阶段目标描述
    Poemscape|Beta阶段第二天
  • 原文地址:https://www.cnblogs.com/chunguang/p/5643164.html
Copyright © 2011-2022 走看看