我正在尝试使用 activerecord 使用 codeigniter 导入一些数据。我收到这个错误,对我来说没有任何意义
<p>Error Number: 1062</p>
<p>Duplicate entry 'L'' for key 'brand'</p>
<p>INSERT INTO `brands` (`brand`) VALUES ('L\'awlek')</p>
我对brands 表有一个UNIQUE 约束,因为我不想重复。我的问题是,为什么它会在第一个撇号处切断价值并声称这是关键?
相关代码:
define('TABLE','brands');
function add( $data ){
$exists = $this->exists( $data['brand'] );
if( ! $exists )
$query = $this->db->insert( TABLE , $data);
return ! $exists ? $this->db->insert_id() : $exists;
}
function exists( $value ){
$query = $this->db->get_where( TABLE , array('brand'=>$value));
if( $query && $query->num_rows() > 0 ){
return $query->row()->id;
} else {
return false;
}
}