mysql_insert_id() returns 0

前端 未结 4 1452
[愿得一人]
[愿得一人] 2020-11-30 10:29

I know there are a lot of topics with the same title. But mostly it\'s the query that\'s been inserted in the wrong place. But I think I placed it right. So the problem is,

4条回答
  •  星月不相逢
    2020-11-30 10:58

    According to the manual mysql_insert_id returns:

    The ID generated for an AUTO_INCREMENT column by the previous query on success, 0 if the previous query does not generate an AUTO_INCREMENT value, or FALSE if no MySQL connection was established.

    Since it does not give you false and not the correct number it indicates that the queried table didn't generate an auto-increment value.

    There are two possibilities I can think of:

    1. Your table doesn't have an auto_increment field
    2. Since you doesn't provide the link to the mysql_insert_id() but using a link with mysql_query() it might not be the correct table that's queried when retrieving the last inserted id.

    Solution:

    1. Make sure it has an auto_increment field
    2. Provide the link aswell: $waarde = mysql_insert_id($this->db);

提交回复
热议问题