1
나는 PRADO PHP 프레임 워크로 시작하고 있으며, 빠른 질문이 있습니다. 마지막 삽입 된 레코드의 기본 키를 얻는 방법은 무엇입니까? 내 코드는 다음과 같습니다.ActiveRecord save() 메서드를 호출 한 후 기본 키를 얻는 방법 PRADO?
$studentRecord = new StudentRecord;
$studentRecord->Name = $this->txtName->SafeText;
$studentRecord->ContactNumber = $this->txtContactNo->SafeText;
$studentRecord->save();
// $studentId = ???
고마워요!