The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
72 views

Using $insert_id to update two tables - codeigniter

Is there a way that I can update a form input using something like insert_id? I have a form for adding factories to a table and I use the insert_id to store the factories id in another table too after ...
4
votes
2answers
66 views

PHP – retrieving auto-incremented values from extended inserts

I'm currently using $mysqli->insert_id to retrieve auto-allocated primary keys from a MySQL table when new rows are inserted. This works fine on single inserts. It's a simple case of $result = ...
0
votes
1answer
278 views

mysqli multi_query and insert_id gets me Commands out of sync;

I know similar questions have been asked, I've tried a bunch of them (including the php docs) but I don't seem to get this to work. I have the following: $query = "insert into page title values ...
1
vote
1answer
396 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 ...
0
votes
1answer
614 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 ...
1
vote
1answer
2k 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 ...
6
votes
5answers
13k 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 ...
1
vote
1answer
1k 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 ...
0
votes
1answer
568 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 ...
2
votes
3answers
2k 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 ...
4
votes
4answers
11k 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 = ...
0
votes
2answers
688 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 ...
68
votes
2answers
34k 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?
2
votes
5answers
594 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 ...
0
votes
2answers
401 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 ...
1
vote
6answers
2k 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 ...
3
votes
3answers
4k 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
2k 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 ...
25
votes
6answers
14k 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 ...
10
votes
5answers
8k 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. ...