Index: typo3/sysext/adodb/adodb/drivers/adodb-odbc.inc.php =================================================================== --- typo3/sysext/adodb/adodb/drivers/adodb-odbc.inc.php (revision 7088) +++ typo3/sysext/adodb/adodb/drivers/adodb-odbc.inc.php (working copy) @@ -161,6 +161,12 @@ $num += 1; $this->genID = $num; return $num; + } elseif ($this->affected_rows() == 0) { + // some drivers do not return a valid value => try with another method + $value = $this->GetOne("select id from $seq"); + if ($value == $num + 1) { + return $value; + } } } if ($fn = $this->raiseErrorFn) {