试图了解PDO的来龙去脉,我刚进入这个砖墙。
我目前的PDO课程如下:
class SimpleDatabase extends PDO {
const DB_HOST='localhost';
const DB_USER='claudio';
const DB_PASS='claudio';
const DB_NAME='simpledb';
private $dbh;
private $error;
private $stmt;
public function __construct(){
// Set DSN
$dsn = 'mysql:host=' . self::DB_HOST . ';dbname=' . self::DB_NAME;
// Set options
$options = array(
PDO::ATTR_PERSISTENT => true,
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
);
// Create a new PDO instanace
try{
$this->dbh = new PDO($dsn, self::DB_USER, self::DB_PASS, $options);
}
// Catch any errors
catch(PDOException $e){
$this->error = $e->getMessage();
}
}
public function __destruct(){
// Adding null connection
$this->dbh = null;
$this->isConnected = false;
}
// The query, prepare, bind and execute methods allows us to use prepared statements in our DB interactions
// Prepare
public function query($query){
$this->stmt = $this->dbh->prepare($query);
}
// Bind
public function bind($param, $value, $type = null){
if (is_null($type)) {
switch (true) {
case is_int($value):
$type = PDO::PARAM_INT;
break;
case is_bool($value):
$type = PDO::PARAM_BOOL;
break;
case is_null($value):
$type = PDO::PARAM_NULL;
break;
default:
$type = PDO::PARAM_STR;
}
}
$this->stmt->bindValue($param, $value, $type);
}
// Execute
public function execute(){
return $this->stmt->execute();
}
我确实有其余的功能,但特别是对于这个错误,我认为没有必要向你展示其余的。
然后我用这种方式调用函数:
$database = new SimpleDatabase();
$database->query('INSERT INTO mytable (FName, LName, Age, Gender) VALUES (:fname, :lname, :age, :gender)');
$database->bind(':fname', 'John');
$database->bind(':lname', 'Smith');
$database->bind(':age', '24');
$database->bind(':gender', 'male');
$database->execute();
我收到以下错误:致命错误:在null上调用成员函数prepare(),这在我调用prepare函数时发生。对于为什么会发生这种情况有什么想法,我该如何解决这个问题?
答案 0 :(得分:1)
看起来您的代码“吞咽”了尝试数据库连接时引发的PDO异常,并且失败了。
下面:
catch(PDOException $e){
$this->error = $e->getMessage();
}
如果引发异常,则为error
成员分配内容。凉。但如果连接失败,可能$this->dbh
将为空。
但是看起来你的代码看起来好像一切都好。
就好像你的代码将它的小拇指放在它的嘴角,Dr.Evil风格,并说“我只是假设一切都会计划,什么?”