Laravel 在 MySQL5.1 下運作出錯 ,錯誤如下:
<code>SQLSTATE[HY000]: General error: 1366 Incorrect integer value: ''1'' for column 'status' at row 1 (SQL: insert into `cases` (`case_name`, `status`, `updated_at`, `created_at`) values ('fdsafdsadsa', '1', 1474504956, 1474504956)) </code>
但是自己寫的PDO執行測試卻沒問題
<code>try { $sth = $db->prepare('insert into cases(case_name,status,updated_at,created_at) values (?,?,?,?)'); $sth->bindValue(1, '我也是中文', PDO::PARAM_STR); $sth->bindValue(2, '1', PDO::PARAM_INT); $sth->bindValue(3, time(), PDO::PARAM_INT); $sth->bindValue(4, time(), PDO::PARAM_INT); $sth->execute(); } catch (\Exception $e) { echo $e->getMessage(); }</code>
資料表結構:
也在網路上查詢了說是更改SQL_MODE也更改過了,還是報錯
問題已解決是加了Shell過濾導致的雙重引號問題
Laravel 在 MySQL5.1 下運作出錯 ,錯誤如下:
<code>SQLSTATE[HY000]: General error: 1366 Incorrect integer value: ''1'' for column 'status' at row 1 (SQL: insert into `cases` (`case_name`, `status`, `updated_at`, `created_at`) values ('fdsafdsadsa', '1', 1474504956, 1474504956)) </code>
但是自己寫的PDO執行測試卻沒問題
<code>try { $sth = $db->prepare('insert into cases(case_name,status,updated_at,created_at) values (?,?,?,?)'); $sth->bindValue(1, '我也是中文', PDO::PARAM_STR); $sth->bindValue(2, '1', PDO::PARAM_INT); $sth->bindValue(3, time(), PDO::PARAM_INT); $sth->bindValue(4, time(), PDO::PARAM_INT); $sth->execute(); } catch (\Exception $e) { echo $e->getMessage(); }</code>
資料表結構:
也在網路上查詢了說是更改SQL_MODE也更改過了,還是報錯
問題已解決是加了Shell過濾導致的雙重引號問題