字符串值不正确:' \ xE6 \ x8B \ x93 \ xE6 \ xB5 \ xB7'对于列' bookName'在第1行

时间:2017-03-25 04:42:58

标签: navicat

当我在表格中添加行:book use navicat时,出现了一个问题:

  

错误

     

字符串值不正确:' \ xE6 \ x8B \ x93 \ xE6 \ xB5 \ xB7'对于列' bookName'在第1行

enter image description here

为什么?

修改

我运行if( isset($_GET['VIN']) && $_GET['VIN'] != "" ){ // you can add others validations like string lenght or regex $vin = $_GET['VIN']; $query = "SELECT * FROM INVENTORY"; //...all your code... }else{ // Do something when no VIN comes in the url }

show create table book;

1 个答案:

答案 0 :(得分:0)

您在表格中看到CHARSET=latin1,您的图书表默认字符集为latin1,您应该更改字符集。

alter table book default character set utf8;