1

我从 PRADO php 框架开始,我有一个简单的问题:如何获取最后插入记录的主键?我的代码如下:

$studentRecord = new StudentRecord;
$studentRecord->Name = $this->txtName->SafeText;
$studentRecord->ContactNumber = $this->txtContactNo->SafeText;
$studentRecord->save();
// $studentId = ???

谢谢!

4

1 回答 1

3

我不使用 Prado,但通常使用 Active Record 模式实现时,对象会在保存时刷新。$record->id(或您的 pk col 是什么)不起作用吗?

于 2010-08-23T15:35:19.403 回答