gpt4 book ai didi

php - 违反完整性约束 : 1048 Column 'name' cannot be null error

转载 作者:行者123 更新时间:2023-12-05 09:18:58 26 4
gpt4 key购买 nike

<分区>

这方面的回答很多,但我找不到有用的信息。我正在尝试连接到数据库并将用户输入的值插入其中,但我遇到了这个错误,我真的不知道我做错了什么。我在 2 个不同的文件中创建了 2 个不同的类,一个是 connection.php,另一个是 users.php(用于将用户插入数据库)有人可以帮我解决这个问题吗?

这是我的 connection.php 文件:

<?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 文件:

<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
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();
?>

我在 users.php 第 27 行遇到了这个错误,它是:

$stmt->execute();

它说:

fatal error :未捕获的 PDOException:SQLSTATE[23000]:违反完整性约束:1048 列“名称”不能为空

我知道这里有很多代码,但如果有人愿意帮助我,谢谢...

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com