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);
    }
  • 相关阅读:
    java任务调度之Timer定时器
    springboot 启动的时候报java.lang.NoClassDefFoundError: org/springframework/expression/ParserContext
    Spring 体系结构
    为什么MySQL数据库要用B+树存储索引?
    Nginx反向代理服务器的安装与配置
    详细的最新版fastdfs单机版搭建
    FastDFS 分布式文件系统(部署和运维)
    linux
    Spring Cloud底层原理
    Spring中ioc的实现原理
  • 原文地址:https://www.cnblogs.com/chunguang/p/5643164.html
Copyright © 2011-2022 走看看