1

一般来说,我是 CodeIgniter 和 PHP 的新手。我用某些非空列创建了一个新表。非空列都根据其数据类型设置了默认值,因此 VARCHAR 有一个空字符串,而数字类型的默认值为 0。

但是,一旦我填写了表单(我故意将非空列留空以测试它们)并点击提交按钮,它会给出以下错误:

错误号:1366

不正确的整数值:第 1 行的列 'salary' 的 ''

当它发现用户没有输入任何值时,它会为空字符串插入双引号。我检查了mysql模式,它变成了严格模式。但是,由于我使用的是多租户数据库(Azure-clearDB),它们不允许我拥有超级权限,并且我无法关闭严格模式(或者我可以吗?)

有没有办法关闭此模式,或者有其他解决方法吗?我不想为每列显式添加 SQL if-else 子句,因为这将是硬编码的。请帮助代码如下:

控制器:

$additional_data = array(
                'first_name'    => $this->input->post('first_name'),
                'last_name'     => $this->input->post('last_name'),
                'phone'         => $this->input->post('phone'),
                'salary'        => $this->input->post('salary'));

if ($this->form_validation->run() == true && $this->ion_auth->register($username, $password, $email, $additional_data))
        {
        $identity = $this->ion_auth->where('email', strtolower($this->input->post('email')))->users()->row();
        $forgotten = $this->ion_auth->forgotten_password($identity->{$this->config->item('identity', 'ion_auth')});
        $this->session->set_flashdata('message', $this->ion_auth->messages());
        redirect('auth/success', 'refresh');

模型:

    //filter out any data passed that doesnt have a matching column in the users table
    //and merge the set user data and the additional data
    $user_data = array_merge($this->_filter_data($this->tables['users'], $additional_data), $data);

    $this->trigger_events('extra_set');

    $this->db->insert($this->tables['users'], $user_data);

    $id = $this->db->insert_id();

    //add in groups array if it doesn't exits and stop adding into default group if default group ids are set
    if( isset($default_group->id) && empty($groups) )
    {
        $groups[] = $default_group->id;
    }

    if (!empty($groups))
    {
        //add to groups
        foreach ($groups as $group)
        {
            $this->add_to_group($group, $id);
        }
    }

    $this->trigger_events('post_register');

    return (isset($id)) ? $id : FALSE;

更新:我正在使用相同的插入语句插入多个列值。

4

1 回答 1

0

根据您的描述,您已将“工资”列设置为整数列,但插入''为空字符串。

所以你需要设置0而不是''在“工资”列中。

于 2016-03-09T04:46:59.550 回答