1

我想检索最后插入的行的 id。这是我在映射器中使用的代码:

public function save(Application_Model_Projects $project)
{
    $data = array(
        'id_user' => $project->getIdUser(),
        'project_name' => $project->getProjectName(),
        'project_description' => $project->getProjectDescription(),
        'due_date' => $project->getDueDate(),
        'id_customer' => $project->getIdCustomer()
        );
    if(($id = $project->getId()) === null) {
        unset($data['id']);
        $this->getDbTable()->insert($data);
        return $this->getDbTable()->lastInsertId();
    }else {
        $this->getDbTable()->update($data, array('id = ?', (int) $id));
        return $id;
    }
}  

根据上面的代码,它应该返回id对象的。它是id插入后或当前id

我使用此功能的代码:

$currentUser = new Application_Model_UserAuth();
$project = new Application_Model_Projects();
$project->setProjectName($formValues['projectName'])
        ->setProjectDescription($formValues['projectDescription'])
        ->setDueDate(date("Y-m-d",strtotime($formValues['dueDate'])))
        ->setIdCustomer($formValues['assignCustomer'])
        ->setIdUser($currentUser->id);
$projectMapper = new Application_Model_ProjectsMapper();
$idProject = $projectMapper->save($project);  

我得到的错误是:
Fatal error: Call to undefined method Application_Model_DbTable_Projects::lastInsertId()

这有什么问题?那不应该返回最后一个ID吗?因为它是在插入时触发的。在另一个代码序列中,我称之为lastInsertId: $Zend_Db_Table::getDefaultAdapter()->lastInsertId()。唯一的区别是现在我调用lastInsertIt了一个扩展的 dbTable Zend_Db_Table_Abstract

4

2 回答 2

0

我上面的问题的答案是我应该打电话getAdapter()之前lastInsertId()

更新代码:

if(($id = $project->getId()) === null) {
    unset($data['id']);
    $this->getDbTable()->insert($data);
    return $this->getDbTable()->getAdapter()->lastInsertId();
}
于 2012-07-11T15:24:34.240 回答
0

如果是单列主键,默认返回值为 lastInsertId,所以你也可以这样使用:

return $this->getDbTable()->insert($data);
于 2012-07-12T08:46:17.573 回答