gpt4 book ai didi

php - 未捕获的 PDOException : SQLSTATE[23000]: Integrity constraint violation: 1048 Column cannot be null

转载 作者:行者123 更新时间:2023-12-01 00:36:25 25 4
gpt4 key购买 nike

当我想通过终端创建新用户时出现此错误:

Uncaught PDOException: SQLSTATE[23000]: Integrity constraint violation: 
1048 Column 'created_at' cannot be null

我使用 MySQL 数据库和 Doctrine 2.5 作为 ORM。这是表格的设置:

Column  Type    Comment
id int(11) Auto Increment
name varchar(255)
created_at datetime
last_login datetime NULL

这里是 create_user.php:

<?php
// create_user.php
use Doctrine\ORM\Mapping as ORM;
require_once "bootstrap.php";
require 'vendor/autoload.php';
use Db\User;

$newUsername = $argv[1];

$user = new User();
$user->setName($newUsername);

$entityManager->persist($user);
$entityManager->flush();

echo "Created User with ID " . $user->getId() . "\n";

用户.php :

<?php
// src/User.php
namespace Db;
use Doctrine\ORM\Mapping as ORM;
use Doctrine\Common\Collections\ArrayCollection;

/**
* @ORM\Entity @ORM\Table(name="user")
**/
class User
{
/** @ORM\Id @ORM\Column(type="integer") @ORM\GeneratedValue **/
protected $id;

/** @ORM\Column(type="string") **/
protected $name;

/** @ORM\Column(type="datetime") **/
protected $created_at;

/** @ORM\Column(type="datetime", nullable=true) **/
protected $last_login;

我看不到错误,因为列 created_at 不为空。

最佳答案

您没有为 created_at 设置任何值,因此它会引发错误。将您的 created_at 设置为可为空或在您的代码中明确设置值:

$user->setCreatedAt((new \DateTime()));

关于php - 未捕获的 PDOException : SQLSTATE[23000]: Integrity constraint violation: 1048 Column cannot be null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48873618/

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