我正在尝试使用Codeigniter的dbforge向数据库中添加新列,但它仅返回错误消息,而不会进入else列
我的错误:
重复的列名“ github”
更改表social-settings
添加github
VARCHAR(255)
我知道有一个列名github,但是它没有进入else列,如果列添加失败,它将在数据库中插入两个表,我需要从其他表中删除
$last_id=$this->Forms_model->newArea($this->input->post());
if ($last_id!=false) {
$this->load->dbforge();
$fields = array(
$this->input->post("element_name") => array(
'type' => 'VARCHAR',
'constraint' => '255',
),
);
$table = $this->input->post("element_form_id") == 2 ? "contact-settings" : "social-settings";
if ($this->dbforge->add_column($table, $fields)) {
echo json_encode(returnJson(1, "Yeni form alanı ekleme işlemi başarılı."));
} else {
echo $this->Forms_model->turnToOld($last_id) == true ? json_encode(returnJson(0, "Yeni form alanı ekleme işlemi bir sebepten dolayı başarısız oldu.")) : json_encode(returnJson(0, "İşlemler yapılırken bazı hatalar oluştu, lütfen geliştiricinizle iletişime geçin."));
}
}
答案 0 :(得分:0)
表中必须已经存在具有该名称的列。
在发出$this->db->field_exists()
语句之前,应使用add_column
检查该列是否存在。
$el = $this->input->post("element_name");
if (is_null($el)) {
show_error('element is null');
}
if (!$this->db->field_exists($el, 'table_name')) {
// dbforge
}