Tagged Questions
The lastinsertid tag has no wiki summary.
6
votes
2answers
648 views
ON DUPLICATE KEY UPDATE doesn't work when there's an UPDATE trigger
I have an INSERT statement that looks like this:
INSERT INTO officer (officer_number,
name,
bank_id)
VALUES ('',
'',
8)
ON DUPLICATE KEY ...
6
votes
5answers
7k views
Get last inserted value from sqlite database Android
I am trying to get the last inserted rowid from a sqlite database in Android. I have read a lot of posts about it, but can't get one to work.
This is my method:
public Cursor getLastId() {
...
4
votes
1answer
2k views
vb.net sql last inserted ID
i'm using VB.NET with an Access Database, I insert values but then I need to get the last inserted ID (auto number) and insert that into a related table.
I have tried @@IDENTITY and MAX(column) but ...
4
votes
3answers
1k views
What happens when auto_increment on integer column reaches the max_value in databases?
I am implementing a database application and I will use both JavaDB and MySQL as database. I have an ID column in my tables that has integer as type and I use the databases auto_increment-function for ...
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
3answers
137 views
SQLite get last row ID after connection is closed
I have two functions.
One Insert into database. It opens the connection and closes it after insert.
Other is GetLastID function.
I know I could query the biggest ID but I was told it's a bad ...
3
votes
1answer
95 views
For the method PDO::lastInsertId(), what do they mean by the argument “sequence name”? (PHP - PDO)
I am trying to use PDO's lastInsertId method, but the documentation states that for some rdbms I need a sequence name as an argument. Only being familiar with mysql, I am not quite sure what a ...
3
votes
3answers
487 views
Mysql mulitple row insert-select statement with last_insert_id()
Ok. So the short of it is, I was trying to do an INSERT SELECT such as:
START TRANSACTION;
INSERT INTO dbNEW.entity (commonName, surname)
SELECT namefirst, namelast
FROM dbOLD.user;
SET @key ...
3
votes
4answers
4k views
Get the last insert id with doctrine 2?
How can I get the last insert id with doctrine 2 ORM? I didn't find this in the documentation of doctrine, is this even possible?
3
votes
5answers
353 views
Using LAST_INSERT_ID() via PHP?
When I execute the following in the MySQL console, it works fine:
INSERT INTO videos (embed_code) VALUES ('test code here');
SELECT LAST_INSERT_ID();
But, when I execute the above queries via PHP, ...
3
votes
2answers
203 views
mySQL 5.0.45 LAST_INSERT_ID() and values larger than a signed int
I'm attempting to use LAST_INSERT_ID on an auto incremented index that has moved past the signed int value 2147483647. This column is an unsigned int. However, LAST_INSERT_ID() is returning an invalid ...
3
votes
1answer
3k views
PDO lastInsertId issues, php
I have tried lots of ways to get the last inserted ID with the code below (snipplet from larger class) and now I have given up.
Does anyone know howto get PDO lastInsertId to work?
Thanks in ...
2
votes
1answer
22 views
can SQL insert using select return multiple identities?
I am insertnig into a table using a selection
INSERT california_authors (au_id, au_lname, au_fname)
SELECT au_id, au_lname, au_fname
FROM authors
WHERE State = 'CA'
say i have an identity column in ...
2
votes
2answers
163 views
MySQL+PHP: getting last_id of multiple/composite primary key
I need to get the last inserted id of table that have multi-column primary keys.
Those tables does not have AUTOCOUNT column.
I'm using parametrized queries (arbitrary order)
Using PHP (5.3) and ...
2
votes
2answers
76 views
When will we give an argument to LAST_INSERT_ID()?
Quoted from here:
mysql> UPDATE sequence SET id=LAST_INSERT_ID(id+1);
mysql> SELECT LAST_INSERT_ID();
What's the use case of the above (what's the benefit )?
I've never used the ...
2
votes
1answer
274 views
Why does PDO::lastInsertId return 0?
This is my code.
// insert reward into wallet
$sql = "
INSERT INTO `wallet` (`uid`, `created_at`, `amount`, `type`, `payment_id`) VALUES (:uid, CURRENT_TIMESTAMP, :amount, 'payment', :payment_id);
";
...
2
votes
1answer
109 views
MySQL and the chance of the wrong id being returned by LAST_INSERT_ID()
From what I have read LAST_INSERT_ID() retrieves the id of the last insert statement to run. If that the last insert statement run on your connection or the last insert run on the database for all ...
2
votes
3answers
889 views
how do i handle concurrent inserts in mysql table and fetch the correct insert id
I am using adodb for PHP library.
For fetching the id at which the record is inserted I use this function "$db->Insert_ID()"
I want to know if there are multiple and simultaneous inserts into the ...
2
votes
6answers
5k views
Last inserted record ID problems using typed DataSet and DataGridView
I'm using following for a simple database application:
SQL Server Compact Edition .sdf file as database, with int primary key IDs.
Typed DataSet and BindingSource as data access layer
DataGridView ...
1
vote
3answers
68 views
How to get last insert Id in SQLite?
Is there any built in function available in SQLite to fetch last inserted row id.
For eg :- In mysql we have LAST_INSERT_ID() this kind of a function. For sqllite any function available for doing the ...
1
vote
2answers
35 views
MySQL PDO LastInsertID after insert with “before” trigger returns wrong value
I have a customers table with ID (auto_inc), name, ... and customer_code fields. This table has also a "before" trigger, the select one customer code from another table, and set the customer_code ...
1
vote
1answer
54 views
How can I get last 50 documents in mongoDB?
How can I get last 50 documents in mongoDB?
I have a collection which is made by
db.createCollection("collection",{capped:true, size:300000});
from this "collection"
I would like to have last 50 ...
1
vote
1answer
284 views
PDO Mysql prepared statement last_insert_id returns wrong value on multi-insert?
I noticed that if I prepare a multi-insert statement and execute it into MySQL via PDO, and then request the last_insert_id, I get the first ID of the multiple inserted rows, not the last one. ...
1
vote
1answer
137 views
Not able to get last inserted ID from MySQL
I'm inserting multiple rows from one table to another, based on ID.
For this project I'm using PDO for all DB queries. This is the code / function I'm using:
protected function importData($data) {
...
1
vote
1answer
458 views
Doctrine 2 - How to get the ID of the last inserted id in PostPersist?
Title explains it all. I have a lifecyclecallback function in entity. I want to get last inserted id from PostPersist event not from the entity. AS an example I dont want to do
$newSeating = new ...
1
vote
2answers
2k views
How to program a MySQL trigger to insert row into another table?
I'm looking to create a MySQL trigger on a table. Essentially, I'm creating an activity stream and need to log actions by users. When a user makes a comment, I want a database trigger on that table to ...
1
vote
2answers
730 views
mysql LAST_INSERT_ID() used with multiple records INSERT statement
If i insert multiple records with a loop that executes a single record insert, the last insert id returned is, as expected, the last one...
but if i do a multiple records insert statement:
INSERT ...
1
vote
1answer
1k views
insert_id in Kohana 3
I'm using Kohana 3 framework with Mysql stored procedures. How can I get id of the last inserted record?
Here's the code:
class Model_MyModel extends Kohana_Model
{
public function ...
1
vote
2answers
484 views
last_insert_id() vs SELECT Max(ID)
Is using SELECT Max(ID) FROM table safer than using SELECT last_insert_id(), where they run as 2 separate queries?
I'm concerned that before the last_insert_id() can run, another insert will take ...
1
vote
2answers
786 views
Get last Inserted 'Id' while doing multiple entry to mysql in codeigniter
In my form, there are values to be inserted to multiple tables.
After inserting to the first table, i have to insert the other values,
along with the 'id' of the entry to first table as reference. ...
1
vote
2answers
391 views
php function last_insert_id() is not working with REPLACE INTO query
I am using REPLACE INTO query to insert in to table but after executing query by using mysql_query() function and if I use last_insert_id() it is only giving me 0 value.
why this is happening so? and ...
1
vote
1answer
3k views
With Kohana 3, how can I get the last insert ID from the Database class?
I have been through a fair bit of the code in modules/database/classes/ but still have not found how to return the last insert Id.
How do I get this?
1
vote
3answers
748 views
Transaction with two sql insert
I have two sql insert to do (say for examples in tables A and B), they are in a transaction because I want the database to remain consistent, that is, a tuple in A must have references in B.
In the ...
0
votes
1answer
48 views
Most efficient way to do Mysql Multi select (and insert if not exists)
I have 20 tables with 2 fields, id and name description
Colors
id name
1 black
2 blue
...
Sizes
id name
1 100
2 105
...
Now i have the main table with 21 fields
Main table `shoes`
id Colors ...
0
votes
2answers
88 views
Kohana 3 ORM retrieve last insert ID
Is there a way after the ->save() call to get the last insert id?
Example Code:
$post_data = $_POST;
$user = ORM::factory('user');
$user->username = $post_data['username'];
$user->email = ...
0
votes
1answer
38 views
Race Conditions with mysql_last_id()
I've spent the better part of the day trying to find an answer to this, but there just doesn't seem to be one out there. I have need of function which creates a row in a table, retrieves the ...
0
votes
1answer
70 views
Function lastInsertId() PDO PHP with 2 differents databases [closed]
I have a follow code:
function insertPlayer($player)
{
$returnObj = new Response("");
try
{
$response = $this->checkPlayerId();
if($response->hasError())
{
...
0
votes
2answers
51 views
Inserting tuple's elements to database
I have a tuple that i wanna store its elements, I'm trying to insert it as following and it gives the following error, what am i doing wrong ? records_to_be_inserted is the tuple that has 8 elements.
...
0
votes
1answer
105 views
Sybase JDBC get generated keys
In Postgres, I can write
INSERT .. RETURNING *
To retrieve all values that had been generated during the insert. In Oracle, HSQLDB, I can use
String[] columnNames = ...
PreparedStatement stmt = ...
0
votes
1answer
174 views
mysql getting last_insert_id() in a trigger
It's my understanding that when you call last_insert_id() it goes by connections, so you'll get the id of the last row inserted on the same connection where last_insert_id() is called, right?
So ...
0
votes
1answer
336 views
How to OUT from a stored procedure using LAST_INSERT_ID()
Mysql Version 14.14 Distrib 5.1.41
I have a stored procedure that I am trying to get compiled but an error keeps cropping up. My stored procedure prepares an insert statement, executes it, ...
0
votes
1answer
218 views
get ids of all inserted records by last query executed in cakephp
I can find the primary key id of last inserted record as follows:
$this->Model->save($record);
$id = $this->Model->getLastInsertId();
I am looking for something like this:
...
0
votes
3answers
605 views
Rails 3 - how to find last inserted ID from mysql table
in my controller I have following sequence of commands:
SAVE DATA INTO FIRST TABLE
_get ID of inserted item into table from first step_
SAVE DATA INTO SECOND TABLE WITH ID FROM FIRST COMMAND
if ...
0
votes
0answers
75 views
Update a second table with FK to autoincrement id of the first table
How do I update two tables at once, where both contain a same autoincrement id? The second table has a foreign key linked to "_id" autoincrement value of the first table.
My goal is to create one ...
0
votes
1answer
355 views
Last inserted row id in PostgreSQL
I am using postgresql database. And previous tables which are created by my seniors and they are not used sequence concept, they added data manually. Now i need to insert data with my java ...
0
votes
1answer
188 views
Fastest way to insert, if not exist, then get id in MySQL
There's this table.
| id | domain |
id is the primary key. domain is a unique key.
I want to:
Insert a new domain, if it doesn't exist already.
Get the id for that domain.
Now I'm doing it ...
0
votes
0answers
713 views
iPhone SQlite insert statement executes only once
im using the old school way of storing data in my application using sqlite3 calls.
I am running this app on the iphone simulator (4.1)
The app is a tab bar view controller with the first view a ...
0
votes
2answers
782 views
SELECT LAST_INSERT_ID() *updated
I'm looking to use SELECT LAST_INSERT_ID()
Am using a form to have a user input values. With the first insert I need to get the last inserted id for the next insert... I have not figured out how to ...
0
votes
2answers
173 views
mysql : Any command to use instead of mysql_insert_id(); in PHP?
I want to get primarykey ID of just insert item. In PHP has mysql_insert_id(). I write in C#
0
votes
1answer
130 views
Subsonic 3.0.0.4 active record templates for mysql not returning last inserted id
Steps to reproduce error:
CREATE TABLE person (
person_id int(11) NOT NULL AUTO_INCREMENT, firstname varchar(20) DEFAULT NULL, lastname varchar(20) DEFAULT NULL, age int(11) DEFAULT '0', PRIMARY KEY ...