sql >> Database >  >> RDS >> Mysql

Niet-gevangen fout:aanroep van een lidfunctie prepare() bij null-fout

Je hebt gewoon enkele fouten in je code. Probeer deze regels te gebruiken:

Verbindingsbestand :

<?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();

gebruikers.php bestand :

<?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();

Uitleg :

  • Je moet de $connection-variabele doorgeven aan je gebruikersklasse (of deze importeren met global $connection; )
  • Uw verbindingsbestand moet de eigenschap dbh zichtbaar maken, anders kunt u geen query uitvoeren op uw database
  • BOB prepare() methode wacht op een vraag in het eerste argument
  • U hoeft geen array door te geven aan de methode execute() als u uw waarden al eerder hebt gekoppeld


  1. uren berekenen op basis van kantooruren in Oracle SQL

  2. Converteer string/varchar naar datum tussen MySQL-tabellen

  3. codeigniter active record opvragen en opvragen zonder de LIMIT-clausule

  4. Hoe dblink gebruiken (installeren) in PostgreSQL?