I am trying to use the PDO method lastInsertId, but the documentation says that for some rdbms I need the sequence name as an argument. Just familiar with mysql, I'm not quite sure what the sequence name is. Do they mean the name of the column containing the auto-increment identifier? Here is the documentation for the method:
http://php.net/manual/en/pdo.lastinsertid.php
Any information on this would be greatly appreciated. Thank.
auto_increment ing (.. MySQL) :
auto_increment
CREATE SEQUENCE a_sequence INCREMENT BY 5 START WITH 30
, : 30, 35, 40... .. lastInsertId .