Я начинаю с PRADO php framework и у меня быстрый вопрос: как получить первичный ключ последней вставленной записи?Мои коды следующие:
$studentRecord = new StudentRecord;
$studentRecord->Name = $this->txtName->SafeText;
$studentRecord->ContactNumber = $this->txtContactNo->SafeText;
$studentRecord->save();
// $studentId = ???
Спасибо!