我有一個表在MySQL 5.1以下模式:代碼點火器的活動記錄 - 插入到柱點
Venue (id, name, location)
其中位置是Point類型的。 我試圖用笨2.0活動記錄插入一個新的記錄:
$row = array("id" => $id, "name" => $name, "location" =>
"GeomFromText('POINT(1 1)')");
$this->db->insert('Venues', $row);
,但我得到了以下錯誤:
Cannot get geometry object from data you send to the GEOMETRY field
嘗試呼應查詢正在使用$ this-> db-> last_query()運行; – Sukumar