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