Tagged Questions
The insert-id tag has no wiki summary.
18
votes
2answers
9k views
How to get the insert ID in JDBC?
I want to INSERT a record in a database (which is Microsoft SQL Server in my case) using JDBC in Java. At the same time, I want to obtain the insert ID. How can I achieve this using JDBC API?
11
votes
5answers
7k views
MySQL ON DUPLICATE KEY - last insert id?
I have the following query:
INSERT INTO table (a) VALUES (0)
ON DUPLICATE KEY UPDATE a=1
I want the ID of either the insert or the update. Usually I run a second query in order to get this as I ...
4
votes
5answers
755 views
Insert date and time into Mysql
guys
I am trying to insert date and time into mysql datetime field. When a user select a date and time, it will generate two POST variables. I have searched internet but still not sure how to do ...
4
votes
5answers
4k views
mysql_insert_id alternative for postgresql
is there an alternative for mysql_insert_id() php function for PostgreSQL? Most of the frameworks are solving the problem partially by finding the current value of the sequence used in the ID. ...
3
votes
3answers
6k views
zend framework get last insert id of multi row insert using execute
How would I get the last inserted ID using a multirow insert?
Here is my code:
$sql='INSERT INTO t (col1, col2, col3) VALUES (1, 2, 3), (4, 5, 6), (7, 8, 9)'; // example
$stmt = ...
2
votes
3answers
883 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
5answers
351 views
MySQL: use the id of the row being inserted in the insert statement itself
I'm trying to some something like that:
INSERT INTO dir_pictures SET filename=CONCAT(picture_id,'-test');
picture_id is my primary key, auto-increment. Basically I'm trying to put the id of this ...
2
votes
4answers
3k views
Postgresql and PHP: is the currval a efficent way to retrieve the last row inserted id, in a multiuser application?
Im wondering if the way i use to retrieve the id of the last row inserted in a postgresql table is efficent..
It works, obviously, but referencing on the serial sequence currval value could be ...
2
votes
4answers
1k views
MySQL current_insert_id()? (Not last_insert_id())
I am inserting a row with a char column for a hash based on (among other things) the row's auto id.
I know I can insert it, fetch the insert_id, calculate the hash, and update it.
Does anyone know ...
1
vote
1answer
87 views
MySQL PhpMyAdmin: Alter AUTO_INCREMENT and/or INSERT_ID
I have an invoices table which stores a single record for each invoice, with the id column (int AUTO_INCREMENT) being the primary key, but also the invoice reference number.
Now, unfortunately I've ...
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
1answer
538 views
Retrieve Core Data Entities in Order of Insertion
Is there an internal ID variable or timestamp I can use in a NSSortDescriptor to retrieve Core Data entities in the order they were inserted?
I would rather not have to create such properties if ...
1
vote
6answers
852 views
Private Messaging System With Threading/Replies
I'm currently working on creating a private messaging system, (PHP/MySQL) in which users can send message to multiple recipients at one time, and those users can then decide to reply.
Here's what I'm ...
0
votes
1answer
122 views
insert_id mysqli
I'm trying to return the inserted id from a mysql INSERT query. Each time I run the function I get 0 as the result. Can someone please explain at what point I can retrieve the value because although ...
0
votes
1answer
398 views
PHP MySQLi and MySQLi_STMT: Which insert_id to use?
Both the MySQLi and MySQLi_STMT classes have an $insert_id property.
If I am connected to my database using a MySQLi object (say $db), and then I perform an INSERT with a MySQLi_STMT object (say ...
0
votes
2answers
403 views
What are the better ways with INSERT on relational tables?
I'm experiencing my first mysql INSERT tests and I'm using these tables:
table employees
-> employee_id
-> employee_name
-> employee_surname
-> employee_url
table areas
-> area_id
...
0
votes
2answers
338 views
Dependency in identity column values after multiple SQL inserts
If the next is right:
There are SQL string with multiple inserts (using a stored procedure):
"EXEC SPInsertData ... EXEC SPInsertData ... EXEC SPInsertData ..."
The id in identity column, which is ...