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]: Undefined table: 7 ERROR: relation "columnName" does not exist
I guess I have some misunderstanding about "sequence object" stated in the PHP Manual.
Note:
Returns the ID of the last inserted row, or the last value from a sequence object,
depending on the underlying driver. For example, PDO_PGSQL() requires you to specify the
name of a sequence object for the name parameter.
Currently, the "columnName" is the string of that auto-incremented attribute. Can anyone point out where I went wrong? Thanks.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…