0
有沒有辦法一次添加多個記錄?通常我們稱之爲批量插入。 目前我做了以下內容:kohana批量插入
foreach ($datalist as $data)
try {
$this->template_id = $data['template_id'];
$this->notifier_id = $data['notifier_id'];
$this->user_id = $data['user_id'];
$this->date_created= date('Y-m-d h:i:s');
$this->save();
return true;
} catch (Kohana_Exception $e) {
return false;
}
}
什麼是你的問題? – egis
我想運行插入循環 –
你使用kohana orm模塊嗎? – egis