如何使用php获取下一个序列值?

时间:2019-06-20 14:11:11

标签: php sql sql-server codeigniter

为contract_seq选择下一个值

//它将返回序列1、2、3等的下一个值。我需要将此序列号插入数据库表中。我要使用codeigniter将序列号插入数据库表中

INSERT dbtest.contract (Contract_no) VALUES (NEXT VALUE FOR pestcontrol.contract_seq) // error Invalid object name 'pestcontrol.contract_seq'.

1 个答案:

答案 0 :(得分:0)

我认为您尚未返回模型中插入的ID。尝试以下方法:

public function save_contract($data){ 
         $insert_id = 0;
       if($this->db->insert("contract", $data)){
        $insert_id = $this->db->insert_id();
        }
        return $insert_id;
    }

控制器

public function contract_submitted() {

   $data = array(
       'line_of_business_id' => $this->input->post('busi'),
       'Contact_name' => $this->input->post('name')
     );
       $lastID= $this->modal_create_contract->save_contract($data);
       if(!$lastID){
        //Show Error 
        }
       $data['last_id']=$lastID;
       $this->load->view('contract',$data);
    }