Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
1k views

How bad is using SELECT MAX(id) in MYSQL instead of mysql_insert_id() in PHP?

Background: I'm working on a system where the developers seem to be using a function which executes a MYSQL query like "SELECT MAX(id) AS id FROM TABLE" whenever they need to get the id of the LAST ...
5
votes
1answer
132 views

mysql_insert_id and last_insert_id wrong behavior

I have this table CREATE TABLE IF NOT EXISTS `t5` ( `id` int(11) NOT NULL auto_increment, `a` int(11) NOT NULL, `b` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `a` (`a`,`b`) ) ...
5
votes
2answers
3k views

getting mysql_insert_id() while using ON DUPLICATE KEY UPDATE with PHP

I've found a few answers for this using mySQL alone, but I was hoping someone could show me a way to get the ID of the last inserted or updated row of a mysql DB when using PHP to handle the ...
4
votes
5answers
6k views

Alternative to “PDO::lastInsertId” / “mysql_insert_id”

I always hear that using "lastInsertId" (or mysql_insert_id() if you're not using PDO) is evil. In case of triggers it obviously is, because it could return something that's totally not the last ID ...
3
votes
1answer
277 views

mysql_insert_id() stopped working after PHP update

I am preparing to update a live web server from PHP 5.2.12 to 5.3.5. In preparation, I have performed the update on a second server which is a mirror of the live one ("dev" server). Both servers are ...
3
votes
2answers
228 views

Using mysql_insert_id to insert a lot of data

I want to use PHP and MySQL to insert data into a data table and its associated many-to-many table. The auto-incrementing primary ID of the data table is used in the many-to-many table. So, I need ...
3
votes
2answers
260 views

php: mysql_insert_id() issues

Can the php function mysql_insert_id() return no result after processing the INSERT query in mysql db? Just to clarify. There was a script performing by cron on the production site. It contained a ...
1
vote
2answers
122 views

How to upsert two database tables with one SQL statement?

There are two database tables described in the following. The asterisk highlights the primary keys. +----------------+ +----------------+ | posts | | url_references | ...
1
vote
3answers
58 views

Getting auto-incremented int and inserting into another column

I'm trying to create a new row, in which the image name is the same as the recordID (plus '.png'). The recordID is an auto-incremented int. This makes a new record: mysql_query("INSERT INTO record ...
1
vote
4answers
87 views

What do you put in the parentheses of mysql_insert_id()?

I tried setting a variable like this: $test_id = mysql_insert_id($dbc); because I wanted to get the id of the last row inserted. I am able to connect to the database and insert the row but the next ...
1
vote
3answers
643 views

mysql_insert_id, does not return the last inserted id when i place it in a function

mysql_insert_id does not return the last inserted id when i place it inside a function. im kinda confused why it does not. here is my code: function addAlbum($artist,$album,$year,$genre) { ...
1
vote
4answers
249 views

Call to mysql_insert_id gives warning

Hi I'm receiving this warning when trying to retrieve the insert id Warning: mysql_insert_id(): supplied argument is not a valid MySQL-Link resource in mysql_query($importword); $word_id ...
1
vote
1answer
134 views

Php, MySql - Multiple DB connections and mysql_insert_id()

I have 2 database connections, and I want to get the last inserted ID from one of the connections. $old_database = mysql_connect('host', 'username', 'password'); mysql_select_db('database1', ...
1
vote
2answers
288 views

Do you use mysql_error($con) or mysql_insert_id($con) to check insert result?

$dml = "insert into table ..."; mysql_query($dml,$con); The above insert something into a table.then you can check if it succeeded by either if('' == mysql_error($con))... or if($id = ...
0
votes
1answer
120 views

mysql_insert_id() returns 0

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, that I still get 0 even when ...
0
votes
1answer
36 views

mysql_insert_id() to view value of last inserted records

I have a PHP script that inserts data into a mysql database. The table has an auto increment column. I want to use the mysql_insert_id() function to get teh value of the last inserted record. For ...
0
votes
3answers
44 views

mysql_insert_id and my woes?

I'm trying to get the auto incremented column of a row. The code will explain, but basically I'm trying to insert a row into a table called orders, and then I want to get the auto incremented number. ...
0
votes
2answers
95 views

how to pass mysql_insert_id() to either $_POST or form action?

I have a form page in which either an INSERT or an UPDATE query is submitted, depending on the presence/absence of an ID (and when there's an ID it's used to retrieve the record and pre-populate the ...
0
votes
1answer
101 views

mysqli::insert_id returning wrong id on duplicate key

When using mysqli::insert_id in PHP for INSERT INTO ON DUPLICATE KEY UPDATE, I keep getting the next auto increment rather than the updated row if the row is updated. In the same database but in ...
0
votes
1answer
89 views

MySQL foreign key relations vs mysql_insert_id to relate tables

This is for a sort of proof of concept draft, so I'm not uber-optimizing, but don't want to have completely crap code at the same time. For my database, I tried to get true foreign key relations going ...
0
votes
1answer
206 views

Fatal error: Uncaught exception 'mysqli_sql_exception' with message 'No index used in query/prepared statement'

When I run the following code, I get the error saying Fatal error: Uncaught exception 'mysqli_sql_exception' with message 'No index used in query/prepared statement' $mysql = new ...
0
votes
1answer
181 views

Using a single form inserting data into two differen tables though needing to insert last auto id from the first insert into the next

I have a form I need to insert some information into one table. Then grab the auto increment id from that insert and use it in the next insert statement. I get it all to work except for the grabbing ...
0
votes
3answers
464 views

php/mysql/javascript - Need to set GET variable all around (including in url) after the page has loaded

This is a very difficult problem to describe. The big picture: An ajaxed dialog submits to a page to create a new Content Set record. After creation of the Content Set record, this newly created ...
0
votes
2answers
77 views

Question regarding mysql_insert_id() application in my code

I have a page in which there is an if...else loop for processing of input data, this page is reverted two times when submitted, that is when a button called "Continue" is clicked and and second time ...
0
votes
1answer
331 views

Mysql_insert_id with Doctrine

I have a couple of tables (mySQL) that i would like to update with the help of Doctrine. The products table id is auto-incrementing, and here's a brief description on what I would like to do: ...
0
votes
3answers
113 views

I'm trying to populate a MySQL table with some data, but, mysqli won't let me insert every 10th statement

I want to initialise a 'ticket' table with some ticket IDs. To do this, I want to insert 120 ticket IDs into the table. However, at every 10th statement, MySQL tells me that the ID already exists and ...
-1
votes
4answers
484 views

mysql_insert_id() failed to retrieve auto increment ID

$dml = "insert into ... "; mysql_query($dml,$con); $Id = isset($row) ? $row['id'] : mysql_insert_id($con); I saw the record is created,but just can't retrieve the Id. What's wrong? EDIT ...