douwei3280 2016-07-21 13:05 采纳率: 0%
浏览 62
已采纳

PDO MYSQL插入语句不起作用(没有给出错误)[重复]

This question already has an answer here:

I have the below MySQL insert statements, the code runs, and PDO does not report any error messages, however the first statement does not save the data to the database (no new row in the address table) while the second fires fine.

$sql=$dbh->prepare("INSERT INTO `Address` (`ID`, `Street`, `Street2`, `Town`, `County`, `Postcode`) VALUES (NULL, ?,?,?,?,?)");

        $sql->execute(array($_POST['street'], $_POST['street2'], $_POST['town'], $_POST['county'], $_POST['postcode']));

        $addressID = $dbh->lastInsertId();

        $firmSQL = $dbh->prepare("INSERT INTO TaxiFirm (Name, LogoURL, AddressID, Phone, Email, LicenseExpiry, ContractDate, Active) VALUES (?, ?, ?, ?, ?, ?, ?, 1)");
        $firmSQL->execute(array($_POST['name'], $_POST['url'], $addressID, $_POST['phone'], $_POST['email'], $_POST['license'], $_POST['contract']));

The SQL for the Address table:

CREATE TABLE `Address` (
  `ID` int(11) NOT NULL,
  `Street` varchar(100) NOT NULL,
  `Street2` varchar(100) NOT NULL,
  `Town` varchar(100) NOT NULL,
  `County` varchar(100) NOT NULL,
  `Postcode` varchar(20) NOT NULL
) 

ALTER TABLE `Address`   MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
ALTER TABLE `Address`
  ADD PRIMARY KEY (`ID`);

The result of DESCRIBE Address;

ID  int(11) NO  PRI     auto_increment  
Street  varchar(100)    NO              
Street2 varchar(100)    NO              
Town    varchar(100)    NO              
County  varchar(100)    NO              
Postcode    varchar(20) NO              

I can't see anything wrong with the code?

</div>
  • 写回答

1条回答 默认 最新

  • douxie0824 2016-07-21 13:18
    关注

    You are specifying NULL as value for the ID, but it is a NOT NULL column. ID doesn't have auto_increment, so the statement will really try to insert null into the field, which fails.

    After the comments:

    So we can say, your table is set up correctly. I repeated your steps locally and got the same result:

    mysql> DESCRIBE Address;
    +----------+--------------+------+-----+---------+----------------+
    | Field    | Type         | Null | Key | Default | Extra          |
    +----------+--------------+------+-----+---------+----------------+
    | ID       | int(11)      | NO   | PRI | NULL    | auto_increment |
    | Street   | varchar(100) | NO   |     | NULL    |                |
    | Street2  | varchar(100) | NO   |     | NULL    |                |
    | Town     | varchar(100) | NO   |     | NULL    |                |
    | County   | varchar(100) | NO   |     | NULL    |                |
    | Postcode | varchar(20)  | NO   |     | NULL    |                |
    +----------+--------------+------+-----+---------+----------------+
    6 rows in set (0.01 sec)
    

    When executing your code:

    $dbh = new PDO('mysql:dbname=test;host=127.0.0.1', 'root', '', array(PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC));
    
    $sql = $dbh->prepare("INSERT INTO `Address` (`ID`, `Street`, `Street2`, `Town`, `County`, `Postcode`) VALUES (NULL, ?,?,?,?,?)");
    $sql->execute(array('street', 'street2', "town", 'county', 'postcode'));
    $addressID = $dbh->lastInsertId();
    
    var_dump($addressID); // string(1) "3" 
    

    Confirmation by checking the database:

    mysql> SELECT * FROM Address;
    +----+--------+---------+------+--------+----------+
    | ID | Street | Street2 | Town | County | Postcode |
    +----+--------+---------+------+--------+----------+
    |  3 | street | street2 | town | county | postcode |
    +----+--------+---------+------+--------+----------+
    1 row in set (0.00 sec)
    

    Last guess: Parameters missing in your $_POST-Array / wrong index for accessing the array

    $dbh = new PDO('mysql:dbname=test;host=127.0.0.1', 'root', '', array(PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC));
    
    $sql = $dbh->prepare("INSERT INTO `Address` (`ID`, `Street`, `Street2`, `Town`, `County`, `Postcode`) VALUES (NULL, ?,?,?,?,?)");
    $sql->execute(array('street', 'street2', null, 'county', 'postcode'));
    $addressID = $dbh->lastInsertId();
    
    var_dump($addressID); // string(1) "0" 
    exit;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)
  • ¥15 AIC3204的示例代码有吗,想用AIC3204测量血氧,找不到相关的代码。