From 94433f9034f08f1630fe4d43eaa1dc4fcdf94338 Mon Sep 17 00:00:00 2001 From: doctrine Date: Sun, 25 Jun 2006 18:47:42 +0000 Subject: [PATCH] Fixed : Ticket #14 --- Doctrine/Session.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Doctrine/Session.php b/Doctrine/Session.php index 56a185b61..3c1a881c4 100644 --- a/Doctrine/Session.php +++ b/Doctrine/Session.php @@ -561,8 +561,11 @@ abstract class Doctrine_Session extends Doctrine_Configurable implements Countab if($increment) { if($k == 0) { // record uses auto_increment column - - $id = $table->getMaxIdentifier(); + + $id = $this->dbh->lastinsertid(); + + if( ! $id) + $id = $table->getMaxIdentifier(); } $record->setID($id);