The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
16 views

MySQL, linking data, constructing keys, insert into and update

I have information relevant to specific groups of a table A. So I sort out these relevant groups and make an entry containing the group-specific information in a second table B. Up to this point no ...
-1
votes
1answer
87 views

How do you get the last inserted ID from a class into a redirect [duplicate]

I use the following code to insert data into mysql with php pdo (from a class): $this->pdo = $this->connectMySql(); if(isset($params['content'])){ $query = 'INSERT INTO ...
0
votes
3answers
178 views

Two inserts in PHP/MySQL using LAST_INSERT_ID() and rows from another table

I am working on an events calendar using PHP and MySQL (V5.1) where the admin would add an event, and then an attendance list for that event would be created as well. I have three tables: events, ...
0
votes
1answer
110 views

How do I get the Last Insert Id from a JayData transaction?

Using JayData to insert a new object (record) into a Sqlite database, how do I query for the last insert id? I can do it like this but it seems inelegant: ...
1
vote
1answer
60 views

how to save last id inside class?

there is a way to save the $id inside the class so I can use it next time I run the function? so far I get the right $id inside the function after the query is executed, but when I re-run the ...
0
votes
2answers
84 views

SQLite3 and last_insert_rowid

This is how I create my handle $this->_handle = new SQLite3($this->_dbname); This is how I make my db query (shortened): $stmt = $this->_handle->prepare($sql); // execute query $result ...
1
vote
5answers
378 views

Using MYSQL LAST_INSERT_ID() to retrive the ID of inserted row?

I have a table which has got a column with AUTO INCREMENT. I have to retrieve the value of this column when inserting a new row (i need the value of the new row). I've read a lot about it and found ...
1
vote
3answers
72 views

Using an insert id from first of three queries in php

I want to store the data from several curl calls to an initial table, but last insert id is inserting wrong info Query 1 inserts data into table table1 id name email valuereturn 1 ...
1
vote
1answer
75 views

Issue with PDO lastinsertid

I am a beginner programmer and am making a pretty simple insert into database application. Here is my code: $hostname = 'localhost'; $username = '***********'; $password = '**********'; $conn = new ...
1
vote
0answers
173 views

How to get last insert id when using sub query in Kohana

How do I return the correct $insert_id when using a sub query in Kohana? I'm using the query method to return $insert_id and $affected_rows. It returns the correct value for $affected_rows but ...
0
votes
3answers
551 views

undefined method PDO lastInsertId

I have an insert query, and I want to get the ID from the table. I have been searching, and I found lastInsertId() for PDO. When I want to use it, I get PHP errors. This is my code: $db = new ...
1
vote
2answers
76 views

Copy and mutiple insert into (mysql)?

My problem is very simple to explain but I don't success to find the right answer to it ! I have 3 tables in mysql, called tA, tB, tC. I have one entry A in tA, 2 entries B in tB and 3 entries C in ...
2
votes
1answer
2k views

Zend / ZF2 / TableGateway mysql_insert_id replacement?

I am trying to switch from mysql to Zend / TableGateway class. I wonder if there is a method, similar to mysql_insert_id, to get the autoincremented id of the last inserted row. Googling around, I ...
1
vote
3answers
375 views

PDO - lastInsertId() for multiple insert query

I can insert 2 pets into a table, and get their lastInsertId() for further processing one at a time (2 queries). I am wondering if there is a way to get two lastInsertIds() and assign them to ...
-2
votes
2answers
98 views

How do I add lastInsertId()? [duplicate]

Possible Duplicate: Can't get mysql_insert_id() to work I want to print the last inserted id using lastInsertId() on this function: private function adduser() { if ...
1
vote
1answer
2k views

PDO lastInsertId() always return 0

I've come across with a problem. My framework was working just fine with PHP 5.3.0. I upgraded my PHP version to PHP 5.4.x and I started to have few issues with some parts of my framework. After PHP ...
3
votes
2answers
780 views

PHP/MYSQL how to get last_insert_id in transaction

I have 2 MySQL tables table#1 - container: container_id INT (PK AI) start_time DATETIME table#2 - reservation reservation_id INT (PK AI) reservation_time DATETIME container_id INT (FK) The PHP ...
0
votes
1answer
53 views

MySQL Assuming autoincremented IDs based on multi value insert and first id

Just wanted to runt this by someone who knows more MySQL than myself I perform a MySQL insert where I insert say 10 rows in one query. Then when you get MySQL's last insert id, it gives you the ID of ...
2
votes
3answers
681 views

PDO + PHP lastInsertId() issue

Wouldn't there be a problem with it if for example when a user clicks on a link, a new row is automatically inserted and then the php code requests the last inserted id, and at the same time another ...
0
votes
1answer
381 views

phpmyadmin and mysql pdo lastInsertId()

i have this $query = "INSERT INTO players VALUES ( UUID(), :firstname, :lastname, :age, ...
0
votes
1answer
723 views

lastInsertId does not work in Postgresql

I am using Postgresql, when I want to use PDO to retrieve the latest insertion ID, I got a problem. Here is my code: $db->lastInsertId('columnName'); The error message says SQLSTATE[42P01]: ...
1
vote
1answer
1k views

How to find latest inserted row from db row in YII?

I have a table "backup_history" which store sites backup details in my database with the following fields: id site_id backup_file_name file_size by (cron/manual) datetime For the next backup, I ...
0
votes
1answer
533 views

MySQL - insert into with foreign key index

Here is the scenario: I have 2 tables and 2 temporary tables. Before I insert user data to the official tables, I insert them to a temp table to let them do the checks. There is a company table with ...
1
vote
1answer
325 views

last_insert_rowid in sqlite - two tables

I got two tables, one of which is a helper of the other. The table "reviews" has a column which is an integer referencing to the id of the film of that review in the table "films". Is there a way to, ...
0
votes
3answers
571 views

How to select last inserted row by id?

that my problem: I have database table like that: id (AI) market_id 1 6 2 10 3 6 4 10 5 11 How to select ...
0
votes
1answer
191 views

PDO Transaction rolling back when returning LastInsertID

I am having a strange problem which I don't understand. I have the following function which is supposed to return $asset_ID: function commit_purchase($asset_type_ID, $org_ID, $asset_desc, ...
0
votes
2answers
82 views

How to return variables that have been set in MySQL back to PHP

I have a PHP function which inserts multiple records into MySQL: function commit_purchase($asset_type_ID, $org_ID, $asset_desc, $asset_cost, $date, $org_to_member_ID, $asset_ID, ...
0
votes
2answers
610 views

Get last record in mysql

Using this php code: try{ $dbh = new PDO("mysql:host=$host;dbname=$dbname",$user,$pass); $dbh->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION ); // INSERT CLEAN DATA INTO ...
0
votes
1answer
745 views

Inserting array data using mysql insert id and if statements

Ok so whilst I have been working on my PHP and MySQL skills I am new to inserting data into multiple tables in one go. I have done some reading around the subject and I appreciate the basics and the ...
3
votes
1answer
1k views

MySQL UUID primary key - generated by PHP or by MySQL?

I was under the impression that just having MySQL generate the primary key via UUID() would make the key unique across servers, etc. But, there is no way to fetch the last inserted UUID, which ...
0
votes
1answer
133 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 ...
4
votes
1answer
563 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 ...
3
votes
4answers
4k 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 ...
2
votes
2answers
2k 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
384 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 ...
1
vote
1answer
282 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 ...
0
votes
1answer
251 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
281 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. ...
2
votes
1answer
1k 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 ...
2
votes
3answers
651 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 ...
1
vote
1answer
414 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 = ...
2
votes
2answers
1k 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
266 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 ...
1
vote
1answer
593 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
425 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) { ...
2
votes
1answer
2k 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
1answer
1k 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
2k 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
1k 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
355 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: ...

1 2