Q:

 Data truncation: Out of range value for column 'Quality' at row 1

 com.mysql.jdbc.MysqlDataTruncation: Data truncation: Out of range value for column 'Quality' at row 1

 

A:

You column Quality DOUBLE(1,1) can take input only 1 |2 |3

Double( totalsize, decimal), size is the number of characters.
Since your field length is small, the input overflows.
Update your table to fix this.

相关文章:

  • 2022-12-23
  • 2021-06-30
  • 2021-10-02
  • 2022-12-23
  • 2021-08-11
  • 2021-10-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-08-30
  • 2022-12-23
  • 2022-02-04
  • 2021-11-07
  • 2021-08-04
相关资源
相似解决方案