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 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵