私はこのエラーが発生しています 誰かがこれの原因を知っていますか? モデルに問題があると思いますが、わかりません。
エラー番号: 1054
「注文句」の不明な列「id」
SELECT * FROM (
tblquestions) ORDER BY
idasc LIMIT 5
ファイル名: C:\wamp\www\Surva\system\database\DB_driver.php
ライン番号: 330
モデル
private $primary_key = 'QID';
private $table_name = 'tblquestions';
function get_paged_list($limit=10, $offset=0, $order_column='', $order_type='asc')
{
if (empty($order_column) || empty($order_type)) {
$this->db->order_by($this->primary_key, 'asc');
}
else {
$this->db->order_by($order_column, $order_type);
return $this->db->get($this->table_name, $limit, $offset);
}
}
function count_all()
{
return $this->db->count_all($this->table_name);
}
function get_by_id($id)
{
$this->db->where($this->primary_key, $id);
return $this->db->get($this->table_name);
}
function save($question)
{
$this->db->insert($this->table_name, $question);
return $this->db->insert_id();
}
function update($id,$question)
{
$this->db->where($this->primary_key, $id);
$this->db->update($this->table_name, $question);
}
function delete($id)
{
$this->db->where($this->primary_key, $id);
$this->db->delete($this->table_name);
}