4

这是我的 MySQL 错误。

SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '' for key 2

我用谷歌搜索并阅读了一些关于它的内容,但我无法理解。

如何解决?

这是主要部分addStudent.php

require_once('../db.php');
$db = new DB();
if (isset($_POST['st_fname']) && isset($_POST['st_lname']) && isset($_POST['st_class']) && isset($_POST['st_grade']))
{
    $db->addStudent($_POST["st_fname"], $_POST["st_lname"], $_POST["st_class"], $_POST["st_grade"], $_POST["checkOlamp"]);
}

这是一部分db.php

public function addStudent($fname, $lname, $classnum, $grade, $olamp)
{
    $query = "INSERT INTO t_student (s_fname, s_lname, s_class, s_grade, s_olamp) VALUES('$fname', '$lname', '$classnum', '$grade', '$olamp');";
    $this->execute($query);
}

并且 t_student 有一个作为primary键的字段,它是自动递增的。

  • db.php 是我一直使用它而不是 php 中的 mysql_connection 函数的东西,但我不知道它到底是什么。我知道那里使用了一种叫做“PDO”的东西。
4

2 回答 2

5

这意味着您的表中某些列的值必须是唯一的,并且您正在尝试插入重复的行。

顺便说一句,您的函数容易受到 SQL 注入的攻击,您应该始终在将数据包含在 SQL 查询中之前对其进行转义。

于 2012-07-05T17:29:12.330 回答
0

Another easy way to solve "SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry" is to pass the values in the input fields of form like this: you can see value before placeholder... note:articles is the DB table name

<div class="form-group">
      <label for="exampleInputTitle">Title</label>
      <input type="title" name="title" class="form-control" id="exampleInputTitle" 
      aria-describedby="emailHelp" 
      value="<?php echo $articles->title;?>"placeholder="Enter title">
      <small id="titleHelp" class="form-text text-muted"></small>
    </div>
于 2019-07-21T15:01:53.203 回答