这个代码是否为我提供了记录的最后插入ID,即使在重载页面上也是如此?
db = Zend_Db_Table::getDefaultAdapter();
$db->insert($this->_name, $fields_values);
$idAddress = $db->lastInsertId($this->_name);
此致 安德烈
答案 0 :(得分:2)
我正在使用这个...
db = Zend_Db_Table::getDefaultAdapter();
$lastInsertId = $db->insert($this->_name, $fields_values);
答案 1 :(得分:1)
Zend_Db_Adapter_Abstract::lastInsertId()
方法是PDO::lastInsertId()
的代理。根据文件:
PDO :: lastInsertId - 返回最后插入的行或序列值的ID
注意:强>
此方法可能不会在不同的PDO驱动程序中返回有意义或一致的结果,因为底层数据库甚至可能不支持自动增量字段或序列的概念。
现在你知道了。使用它是你自己的风险!
答案 2 :(得分:0)
public function saveData(array $data) {
$this->_setName('user');
// this will return all field name for user table in $field variable
$fields = $this->info($this->getConstCol());
// By this foreach loop we will set data in $data array
foreach ($data as $field => $value)
{
if (!in_array($field, $fields))
{
unset($data[$field]);
}
}
// It will call insert function of (Zend_Db_Table_Abstract Parent of Zend_Db_Table)
// It will return $pkData which is primary key for user table
return $this->insert($data); // It will return last insert ID
}