dqroc48068 2017-03-07 08:40
浏览 40
已采纳

未捕获错误:调用成员函数prepare()on null error [duplicate]

This question already has an answer here:

I know there were a lot of answers related to this error, but I still don't know how to solve it... I'm trying to make the database connection, which would connect to the database and insert user's entered values in it and i got this error. I've created 2 files (with different classes):

Here is a connection file:

<?php
class Connection {
    // Setting Database Source Name (DSN)
 public function __construct() {
$dsn = 'mysql:host=localhost;dbname=employees';
// Setting options
$options = array (PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION);
// Making the connection to the database
try {
$this->dbh = new PDO($dsn, 'root', '', $options); 
}
catch (PDOException $e) {
$this->error = $e->getMessage();
        }
    }
}
$connection = new connection();
?>

And here is users.php file:

<?php
include 'connection.php';
class Users {
public $name;
public $surname;
public $employmentDate;
public function __construct()
{
if(isset($_POST['Submit'])) {
$this->name = $_POST['name'];
$this->surname = $_POST['surname'];
$this->employmentDate = $_POST['employmentDate'];
}
}
// Inserting users values to the database table
public function insertUserValues() {
 $stmt= 'INSERT INTO employee (name,surname,employment_date) VALUES (:name,:surname,:employmentDate)';
 $stmt = $this->dbh->prepare();
 $stmt->bindValue(':name',$name, PDO::PARAM_STR);
 $stmt->bindValue(':surname',$surname, PDO::PARAM_STR);
 $stmt->bindValue(':employmenDate',$employmentDate, PDO::PARAM_STR);
 $stmt->execute([$this->name,$this->surname,$this->employmentDate]);
}
}
$users = new Users();
$users->insertUserValues();
?>

I guess there are some mistakes in code structure, but I'm just learning, so. The code line which throws the error 18 line in users.php file:

$stmt = $this->dbh->prepare();

Please someone tell me where I am doing a mistake, thank you for any help.

</div>
  • 写回答

3条回答 默认 最新

  • du21064 2017-03-07 08:42
    关注

    You just have somes mistakes in your code. Try to use this lines :

    Connection file :

    <?php
    class Connection {
        public $dbh;
    
        // Setting Database Source Name (DSN)
        public function __construct() {
            $dsn = 'mysql:host=localhost;dbname=employees';
            // Setting options
            $options = array (PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION);
            // Making the connection to the database
            try {
                $this->dbh = new PDO($dsn, 'root', '', $options); 
            }
            catch (PDOException $e) {
                $this->error = $e->getMessage();
            }
        }
    }
    
    $connection = new connection();
    

    users.php file :

    <?php
    
    include 'connection.php';
    class Users {
        public $name;
        public $surname;
        public $employmentDate;
        public $connection;
    
        public function __construct($connection)
        {
            $this->connection = $connection;
            if(isset($_POST['Submit'])) {
                $this->name = $_POST['name'];
                $this->surname = $_POST['surname'];
                $this->employmentDate = $_POST['employmentDate'];
            }
        }
    
        // Inserting users values to the database table
        public function insertUserValues() {
            $query = 'INSERT INTO employee (name,surname,employment_date) VALUES (:name,:surname,:employmentDate)';
            $stmt = $this->connection->dbh->prepare($query);
            $stmt->bindValue(':name',$this->name, PDO::PARAM_STR);
            $stmt->bindValue(':surname',$this->surname, PDO::PARAM_STR);
            $stmt->bindValue(':employmentDate',$this->employmentDate, PDO::PARAM_STR);
            $stmt->execute();
        }
    }   
    
    $users = new Users($connection);
    $users->insertUserValues();
    

    Explanations :

    • You have to pass the $connection variable to your users class (or import it with global $connection;)
    • Your connection file has to make visible the dbh property, otherwise you will not be able to make any query on your database
    • PDO prepare() method is waiting for a query in first argument
    • You don't need to pass an array to execute() method if you already have binded your values before
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 微信会员卡接入微信支付商户号收款
  • ¥15 如何获取烟草零售终端数据
  • ¥15 数学建模招标中位数问题
  • ¥15 phython路径名过长报错 不知道什么问题
  • ¥15 深度学习中模型转换该怎么实现
  • ¥15 HLs设计手写数字识别程序编译通不过
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?