有人可以帮助我查询错误吗?当我执行它时,输出显示如下。
Error Number: 1064
您的
中有错误SQL语法;检查与您的MySQL服务器版本相对应的手册,以获得正确的语法,以便在'?,?,?,?,?,?)附近使用?'在第1行
INSERT INTO touristspot(TouristspotID, AccountID, CategoryID, Name, Description, street, city_area, city) Values(0, 111, ?, ?, ?, ?, ?, ?)
我的控制员:
public function manager_spotdetails(){
$data = array(
'CategoryID' => $this->input->post('category'),
'Name' => $this->input->post('spotname'),
'Description' => $this->input->post('desc'),
'street' => $this->input->post('street'),
'city_area' => $this->input->post('city_area'),
'city' => $this->input->post('city')
);
$this->load->model('managerm');
$data['cat'] = $this->managerm->category();
$this->managerm->createspots($data);
$this->load->view('manager_spotdetails', $data);
}
public function createTouristspot(){
$this->load->model('managerm');
$data['cat'] = $this->managerm->category();
$this->load->view('manager_spotdetails');
}
我的模特:
public function createspots($data){
$b = $_SESSION['accountid'];
$this->db->trans_start();
$spot_id= $this->db->insert_id();
$sql3= "INSERT INTO touristspot(TouristspotID, AccountID, CategoryID, Name, Description, street, city_area, city) Values($spot_id, $b, ?, ?, ?, ?, ?, ?)";
$this->db->query($sql3, $data);
$this->db->trans_complete();
return $this->db->insert_id();
}
public function category(){
$this->db->select('CategoryID');
$this->db->select('CategoryType');
$this->db->from('category');
$query= $this->db->get();
return $query->result();
}
}
我的观点:
<div class="form-group">
<span class="input-group-addon" id="basic-addon1">Category Type</span>
<select class="form-control" name="category">
<?php foreach($cat as $row) {?>
<option value="<?php echo $row->CategoryID?>"><?php echo $row->CategoryType?></option>
<?php }?>
</select>
谢谢! :)
答案 0 :(得分:0)
在添加引号后,尝试将名称列读作sql
中的关键字$sql3= "INSERT INTO touristspot(`TouristspotID`, `AccountID`, `CategoryID`, `Name`, `Description`, `street`, `city_area`, `city`) Values('$spot_id','$b', '', '', '','', '', '')";
答案 1 :(得分:0)
更改$ sql3字符串,在VALUES中插入单引号(&#39;):
$sql3= "INSERT INTO touristspot(`TouristspotID`, `AccountID`, `CategoryID`, `Name`, `Description`, `street`, `city_area`, `city`) VALUES('$spot_id', '$b', ?, ?, ?, ?, ?, ?)";
答案 2 :(得分:0)
将此方法用于插入数据
<强>控制器强>
$data = array(
"COLUMN_NAME"=>$this->input->post("account_fname"),
"COLUMN_NAME"=>$this->input->post("account_lname")
);
$insert = $this->Model_name->insert("table_name", $data);
<强>模型强>
public function insert($table,$data){
$this->db->insert($table,$data);
$id = $this->db->insert_id();
return $id;
}
答案 3 :(得分:0)
控制器中的方法manager_spotdetails应
public function manager_spotdetails(){
$data = array(
'AccountID'=>$_SESSION['accountid'],
'CategoryID' => $this->input->post('category'),
'Name' => $this->input->post('spotname'),
'Description' => $this->input->post('desc'),
'street' => $this->input->post('street'),
'city_area' => $this->input->post('city_area'),
'city' => $this->input->post('city')
);
$this->load->model('managerm');
$data['cat'] = $this->managerm->category();
$this->managerm->createspots($data);
$this->load->view('manager_spotdetails', $data);
}
模型中的方法创建点
public function createspots($data){
$this->db->trans_start();
$this->db->insert('touristspot', $data);
$this->db->trans_complete();
return $this->db->insert_id();
}
希望它能正常运作。确保您的数组索引名称与数据库表列名称相同。