Tagged Questions

LAST_INSERT_ID is MySQL specific functionality to get the value of the AUTO_INCREMENT column most recently inserted into. It is the recommended means of getting the value in MySQL, because SELECT MAX(auto_increment) ... is not reliable. That said, this functionality is not ANSI. Sequences are now ...

learn more… | top users | synonyms

5
votes
1answer
159 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`) ) ...
3
votes
1answer
33 views

Why doesn't PDO's Oracle driver implement lastInsertId()?

I get this error in PDO: error: Message: PDO::lastInsertId() [pdo.lastinsertid]: SQLSTATE[IM001]: Driver does not support this function: driver does not support lastInsertId() when trying to ...
2
votes
4answers
110 views

Getting last record from mysql

I am using mysql and facing some problem. I want to retrieve last row that is inserted. << Below are details >> Below is how I created table. create table maxID (myID varchar(4)) I inserted ...
2
votes
2answers
773 views

PHP Postgres: Get Last Insert ID

I found a couple of other questions on this topic. This one... mysql_insert_id alternative for postgresql ...and the manual seem to indicate that you can call lastval() any time and it will work as ...
1
vote
1answer
60 views

last_insert_id in Powershell

In Powershell, I have a simple Mysql insert command. $query = "INSERT INTO TABLE1 (id, col1, col2) VALUES (1, 'two', 'three');"<br> $command = New-Object ...
1
vote
1answer
325 views

MySQL: Insert data from one file into two tables, one with auto_increment id, and one join table

I've got data with 500M+ records, in a file with 2 fields, blob and c_id. There are also two other files with the same data in other formats: A file with 90M unique blobs. A file with a blob, and a ...
0
votes
1answer
51 views

How do I use LAST_INSERT_ID() in WebMatrix

I'm having trouble figuring out how to use LAST_INSERT_ID() for a MySQL database in WebMatrix. Can someone show me how to apply it to the code snippet below? var clothingsize=""; if(IsPost){ ...
0
votes
2answers
393 views

Magento last insert id in middle of transaction

I am using transactions in Magento. I need to use primeryKey of first insert query to all my subsequent queries. $model1->setfield1() ->setField2(); ...
0
votes
0answers
211 views

MySQL Connector/NET, connection pooling and LAST_INSERT_ID()

In my .NET web application I use the following query to insert a new record into a table and get its auto-increment record ID back: "insert into mytable (mycolumn) values ('myvalue');select ...
-1
votes
1answer
80 views

Java Last Insert ID is not working [closed]

Possible Duplicate: How to get the insert ID in JDBC? I was trying to get the last insert ID, but apparently it's not working, it keeps on giving me a bunch of errors one of them is this ...