(no version information, might be only in CVS)
PDO::lastInsertId -- Returns the ID of the last inserted rowWarnung |
Diese Funktion ist EXPERIMENTELL. Das Verhalten, der Funktionsname und alles Andere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohne Ankündigung ändern. Seien Sie gewarnt und verwenden Sie diese Funktion auf eigenes Risiko. |
Returns the ID of the last inserted row, or the next value from a sequence object.
Anmerkung: Due to differences between database server implementations, this method may not always return a meaningful result.
If a sequence name was not specified for the name parameter, PDOStatement::lastInsertId() returns a string representing the row ID of the last row that was inserted into the database.
If a sequence name was specified for the name parameter, PDOStatement::lastInsertId() returns a string representing the next value retrieved from the specified sequence object.
If the PDO driver does not support this capability, PDO::lastInsertID() triggers an IM001 SQLSTATE.
Zurück | Zum Anfang | Weiter |
PDO::getAttribute | Nach oben | PDO::prepare |