• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

laravel5.3 在 mysql5.1中运行出错 error: 1366 Incorrect integer

php 搞代码 4年前 (2022-01-23) 14次浏览 已收录 0个评论
文章目录[隐藏]

<body>

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过滤导致的双重引号问题

回复内容:

<body>

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);    $<i>1本文来#源gaodai$ma#com搞$代*码*网</i><pre>搞代gaodaima码

sth->execute();} catch (\Exception $e){ echo $e->getMessage();}

数据表结构:

也在网上查询了说是更改SQL_MODE也更改过了,依然报错

问题已解决是加了Shell过滤导致的双重引号问题


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:laravel5.3 在 mysql5.1中运行出错 error: 1366 Incorrect integer

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址