我有一个 CodeIgniter 应用程序和 SQL Server 数据库。我使用 PDO 作为驱动程序,一切正常,但当我尝试保存包含“选择”或“选择”字样的数据时却不行。
例子:
$data = array();
$data[] = array('title' => 'all you neeed', 'description' => 'description here');
$data[] = array('title' => 'try this selection', 'description' => 'description here');
$this->db->insert_batch($this->table, $data);